1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
|
openapi: 3.0.1
info:
title: RESTflow
description: Real-time sFlow analytics [REST API](https://sflow-rt.com/reference.php#rest)
for sFlow-RT. See [Writing Applications](https://sflow-rt.com/writing_applications.php).
contact:
name: sFlow-RT.com
url: https://sflow-rt.com/
license:
name: InMon sFlow-RT License Agreement
url: https://inmon.com/products/sFlow-RT/license.php
version: 1.0.0
paths:
/version:
get:
tags:
- server
summary: Software version
responses:
200:
description: OK
content:
text/plain:
schema:
type: string
example: 2.3-1360
/license/json:
get:
tags:
- server
summary: License type and status
responses:
200:
description: OK
content: {}
/analyzer/json:
get:
tags:
- server
summary: sFlow analyzer performance information
responses:
200:
description: OK
content: {}
/agents/json:
get:
tags:
- server
summary: List sFlow agents with session information
parameters:
- name: agent
in: query
description: Agent IP address
schema:
type: string
responses:
200:
description: OK
content: {}
/metrics/json:
get:
tags:
- metrics
summary: List names of available metrics
description: List currently active metrics and elapsed time (in mS) since last
seen.
responses:
200:
description: OK
content: {}
/metric/{agent}/json:
get:
tags:
- metrics
summary: List names of available metrics and latest values received from agent
parameters:
- name: agent
in: path
description: IP address
required: true
schema:
type: string
responses:
200:
description: OK
content: {}
404:
description: Not found
content: {}
/metric/{agent}/{metric}/json:
get:
tags:
- metrics
summary: Get summary statistics for metrics
parameters:
- name: agent
in: path
description: IP address(es) or ALL
required: true
style: simple
explode: false
schema:
type: array
items:
type: string
example:
- ALL
- name: metric
in: path
description: Metric name(s)
required: true
style: simple
explode: false
schema:
type: array
items:
type: string
example:
- ifinoctets
responses:
200:
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Statistic'
/table/{agent}/{metric}/json:
get:
tags:
- metrics
summary: Get table of metric values
parameters:
- name: agent
in: path
description: IP address(es) or ALL
required: true
style: simple
explode: false
schema:
type: array
items:
type: string
example:
- ALL
- name: metric
in: path
description: Metric name(s)
required: true
style: simple
explode: false
schema:
type: array
items:
type: string
example:
- ifinoctets
- ifoutoctets
responses:
200:
description: OK
content:
application/json:
schema:
type: array
items:
type: array
items:
$ref: '#/components/schemas/Metric'
/dump/{agent}/{metric}/json:
get:
tags:
- metrics
summary: Get metric values
parameters:
- name: agent
in: path
description: IP address(es) or ALL
required: true
style: simple
explode: false
schema:
type: array
items:
type: string
example:
- ALL
- name: metric
in: path
description: Metric name(s) or ALL
required: true
style: simple
explode: false
schema:
type: array
items:
type: string
example:
- ALL
responses:
200:
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Metric'
/flowkeys/json:
get:
tags:
- flows
summary: List available flow keys
description: List currently active flow keys and elapsed time (in mS) since
last seen.
responses:
200:
description: OK
content: {}
/flow/json:
get:
tags:
- flows
summary: Get flow definitions
responses:
200:
description: OK
content:
application/json:
schema:
type: object
additionalProperties:
$ref: '#/components/schemas/Flow'
/flow/{name}/json:
get:
tags:
- flows
summary: Get flow definition
parameters:
- name: name
in: path
description: Flow definition name
required: true
schema:
type: string
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Flow'
400:
description: Bad request
content: {}
404:
description: Not Found
content: {}
put:
tags:
- flows
summary: Create or update flow definition
description: Build flow records using packet samples. See [Define Flows](https://sflow-rt.com/define_flow.php)
for more information.
parameters:
- name: name
in: path
description: Flow definition name
required: true
schema:
type: string
requestBody:
content:
'application/json':
schema:
$ref: '#/components/schemas/Flow'
required: true
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
delete:
tags:
- flows
summary: Remove flow definition
parameters:
- name: name
in: path
description: Flow definition name
required: true
schema:
type: string
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
/activeflows/{agent}/{name}/json:
get:
tags:
- flows
summary: List top active flows
description: List top active flows, removing duplicates for flows reported by
multiple data sources.
parameters:
- name: agent
in: path
description: IP address(es) or ALL
required: true
style: simple
explode: false
schema:
type: array
items:
type: string
example:
- ALL
- name: name
in: path
description: Flow definition name
required: true
schema:
type: string
- name: maxFlows
in: query
description: Maximum number of flows
schema:
type: integer
- name: minValue
in: query
description: Minimum flow value
schema:
type: number
- name: aggMode
in: query
description: Method for combining flows across data sources; sum, max, EDGE, or CORE
schema:
type: string
responses:
200:
description: OK
content: {}
400:
description: Bad request
content: {}
/flowvalue/{agent}/{name}/json:
get:
tags:
- flows
summary: Get value for specific flow
description: Select a specific data source and flow and get its value.
parameters:
- name: agent
in: path
description: IP address of agent
required: true
schema:
type: string
- name: name
in: path
description: Location and flow metric name, e.g. 22.tcp for tcp flows on port
22
required: true
schema:
type: string
- name: key
in: query
description: Flow key, e.g. 10.0.0.1,10.0.0.2,22,45333
required: true
schema:
type: string
responses:
200:
description: OK
content: {}
404:
description: Not found
content: {}
/flowlocations/{agent}/{name}/json:
get:
tags:
- flows
summary: Get locations that observed a specific flow
parameters:
- name: agent
in: path
description: IP address(es) or ALL
required: true
style: simple
explode: false
schema:
type: array
items:
type: string
example:
- ALL
- name: name
in: path
description: Flow metric name, e.g. tcp
required: true
schema:
type: string
- name: key
in: query
description: Flow key, e.g. 10.0.0.1,10.0.0.2,22,45333
schema:
type: string
responses:
200:
description: OK
content: {}
400:
description: Bad request
content: {}
404:
description: Not found
content: {}
/flows/json:
get:
tags:
- flows
summary: Get most recently logged flows
description: List completed flows. Flows will only be logged if log:true is
specified in the flow definition.
parameters:
- name: name
in: query
description: Select flows matching definition name
schema:
type: string
- name: flowID
in: query
description: Wait for flows after flowID
schema:
type: integer
- name: maxFlows
in: query
description: Maximum number of flows to return
schema:
type: integer
- name: timeout
in: query
description: Maximum number of seconds to wait for new flows
schema:
type: integer
responses:
200:
description: OK
content: {}
400:
description: Bad request
content: {}
/group/json:
get:
tags:
- group
summary: List address groups
responses:
200:
description: OK
content: {}
/group/{name}/json:
get:
tags:
- group
summary: Get group definition
parameters:
- name: name
in: path
description: Group definition name
required: true
schema:
type: string
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Group'
400:
description: Bad request
content: {}
404:
description: Not Found
content: {}
put:
tags:
- group
summary: Create or update group
description: Define IP address group, mapping CIDRs to names. Used in flow definitions
to group addresses.
parameters:
- name: name
in: path
description: Group definition name
required: true
schema:
type: string
requestBody:
content:
'application/json':
schema:
$ref: '#/components/schemas/Group'
required: true
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
delete:
tags:
- group
summary: Delete group
parameters:
- name: name
in: path
description: Group definition name
required: true
schema:
type: string
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
/map/json:
get:
tags:
- map
summary: List maps
responses:
200:
description: OK
content: {}
/map/{name}/json:
get:
tags:
- map
summary: Get map definition
parameters:
- name: name
in: path
description: Map definition name
required: true
schema:
type: string
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Map'
400:
description: Bad request
content: {}
404:
description: Not Found
content: {}
put:
tags:
- map
summary: Create or update map
description: Map values to names. Used in flow definitions.
parameters:
- name: name
in: path
description: Map definition name
required: true
schema:
type: string
requestBody:
content:
'application/json':
schema:
$ref: '#/components/schemas/Map'
required: true
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
delete:
tags:
- map
summary: Delete map
parameters:
- name: name
in: path
description: Map definition name
required: true
schema:
type: string
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
/threshold/json:
get:
tags:
- threshold
summary: List threshold definitions
responses:
200:
description: OK
content:
application/json:
schema:
type: object
additionalProperties:
$ref: '#/components/schemas/Threshold'
/threshold/{name}/json:
get:
tags:
- threshold
summary: Get threshold definition
parameters:
- name: name
in: path
description: Threshold definition name
required: true
schema:
type: string
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Threshold'
400:
description: Bad request
content: {}
404:
description: Not Found
content: {}
put:
tags:
- threshold
summary: Create or update threshold definition
description: Apply threshold to metric value and generate events when threshold
is exceeded.
parameters:
- name: name
in: path
description: Threshold definition name
required: true
schema:
type: string
requestBody:
content:
'application/json':
schema:
$ref: '#/components/schemas/Threshold'
required: true
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
delete:
tags:
- threshold
summary: Delete threshold
parameters:
- name: name
in: path
description: Threshold definition name
required: true
schema:
type: string
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
/events/json:
get:
tags:
- threshold
summary: Get most recently logged events
description: List events. Events will only be generated if thresholds are defined.
parameters:
- name: thresholdID
in: query
description: Select events matching threshold definition name
schema:
type: string
- name: eventID
in: query
description: Wait for flows after eventID
schema:
type: integer
- name: maxEvents
in: query
description: Maximum number of events to return
schema:
type: integer
- name: timeout
in: query
description: Maximum number of seconds to wait for new events
schema:
type: integer
responses:
200:
description: OK
content: {}
400:
description: Bad request
content: {}
/forwarding/json:
get:
tags:
- forwarding
summary: List sFlow forwarding entries
responses:
200:
description: OK
content:
application/json:
schema:
type: object
additionalProperties:
$ref: '#/components/schemas/Forwarding'
/forwarding/{name}/json:
get:
tags:
- forwarding
summary: Get forwarding entry
parameters:
- name: name
in: path
description: Forwarding entry name
required: true
schema:
type: string
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Forwarding'
400:
description: Bad request
content: {}
404:
description: Not Found
content: {}
put:
tags:
- forwarding
summary: Create or update forwarding entry
description: Forward sFlow datagrams to additional collector
parameters:
- name: name
in: path
description: Forwarding entry name
required: true
schema:
type: string
requestBody:
content:
'application/json':
schema:
$ref: '#/components/schemas/Forwarding'
required: true
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
delete:
tags:
- forwarding
summary: Delete forwarding entry
parameters:
- name: name
in: path
description: Forwarding entry name
required: true
schema:
type: string
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
/topology/json:
get:
tags:
- topology
summary: Get network topology
responses:
200:
description: OK
content:
'*/*':
schema:
$ref: '#/components/schemas/Topology'
put:
tags:
- topology
summary: Set network topology
description: Topology describes physical connections between switches and associates
sFlow data sources with switch ports.
requestBody:
content:
'application/json':
schema:
$ref: '#/components/schemas/Topology'
required: true
responses:
204:
description: No content
content: {}
/tenant/json:
get:
tags:
- forwarding
summary: List tenant sFlow forwarding entries
description: List tenant names and the number of samples forwarded
responses:
200:
description: OK
content: {}
/tenant/{name}/json:
get:
tags:
- forwarding
summary: Get tenant sFlow forwarding entry
parameters:
- name: name
in: path
description: Tenant name
required: true
schema:
type: string
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Tenant'
400:
description: Bad request
content: {}
404:
description: Not Found
content: {}
put:
tags:
- forwarding
summary: Create or update tenant sFlow forwarding entry
description: Forward selected sFlow datagrams to additional collector
parameters:
- name: name
in: path
description: Tenant name
required: true
schema:
type: string
requestBody:
content:
'application/json':
schema:
$ref: '#/components/schemas/Tenant'
required: true
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
delete:
tags:
- forwarding
summary: Delete tenant forwarding entry
parameters:
- name: name
in: path
description: Tenant name
required: true
schema:
type: string
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
/bgp/topprefixes/{router}/json:
get:
tags:
- bgp
summary: Query for most active IPv4 prefixes
parameters:
- name: router
in: path
description: Router IP address
required: true
schema:
type: string
- name: maxPrefixes
in: query
description: Maximum number of prefixes to return
schema:
type: integer
- name: minValue
in: query
description: Minimum value to include in result
schema:
type: number
- name: direction
in: query
description: Direction of traffic, source or destination
schema:
type: string
- name: includeCovered
in: query
description: Include prefixes that are covered by top prefix but wouldn't
otherwise make list
schema:
type: boolean
- name: pruneCovered
in: query
description: Eliminate covered prefixes that share same next-hop
schema:
type: boolean
- name: minPrefix
in: query
description: Exlude short prefixes, e.g. set to 1 to exclude 0.0.0.0/0
schema:
type: integer
responses:
200:
description: OK
content: {}
/bgp/topprefixes6/{router}/json:
get:
tags:
- bgp
summary: Query for most active IPv6 prefixes
parameters:
- name: router
in: path
description: Router IP address
required: true
schema:
type: string
- name: maxPrefixes
in: query
description: Maximum number of prefixes to return
schema:
type: integer
- name: minValue
in: query
description: Minimum value to include in result
schema:
type: number
- name: direction
in: query
description: Direction of traffic, source or destination
schema:
type: string
- name: includeCovered
in: query
description: Include prefixes that are covered by top prefix but wouldn't
otherwise make list
schema:
type: boolean
- name: pruneCovered
in: query
description: Eliminate covered prefixes that share same next-hop
schema:
type: boolean
- name: minPrefix
in: query
description: Exlude short prefixes, e.g. set to 1 to exclude 0.0.0.0/0
schema:
type: integer
responses:
200:
description: OK
content: {}
/bgp/prefix/{router}/json:
get:
tags:
- bgp
summary: Get information on BGP prefix associated with IP address
parameters:
- name: router
in: path
description: Router IP address
required: true
schema:
type: string
- name: address
in: query
description: IPv4 or IPv6 address to query
schema:
type: string
responses:
200:
description: OK
content: {}
400:
description: Bad request
content: {}
/bgp/routepusher/{router}/{address}/{bits}/json:
get:
tags:
- bgp
summary: Get route
parameters:
- name: router
in: path
description: Router IP address
required: true
schema:
type: string
- name: address
in: path
description: IP address part of CIDR
required: true
schema:
type: string
- name: bits
in: path
description: Bits part of CIDR
required: true
schema:
type: integer
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Route'
404:
description: Not found
content: {}
put:
tags:
- bgp
summary: Create or update route
parameters:
- name: router
in: path
description: Router IP address
required: true
schema:
type: string
- name: address
in: path
description: IP address part of CIDR
required: true
schema:
type: string
- name: bits
in: path
description: Bits part of CIDR
required: true
schema:
type: integer
requestBody:
content:
'application/json':
schema:
$ref: '#/components/schemas/Route'
required: true
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
delete:
tags:
- bgp
summary: Delete route
parameters:
- name: router
in: path
description: Router IP address
required: true
schema:
type: string
- name: address
in: path
description: IP address part of CIDR
required: true
schema:
type: string
- name: bits
in: path
description: Bits part of CIDR
required: true
schema:
type: integer
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
/bgp/flowspec/{router}/json:
get:
tags:
- bgp
summary: List installed FlowSpecs
parameters:
- name: router
in: path
description: Router IP address
required: true
schema:
type: string
responses:
200:
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/FlowSpec'
400:
description: Bad request
content: {}
404:
description: Not Found
content: {}
put:
tags:
- bgp
summary: Add Flowspec
parameters:
- name: router
in: path
description: Router IP address
required: true
schema:
type: string
requestBody:
content:
'application/json':
schema:
$ref: '#/components/schemas/FlowSpec'
required: true
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
delete:
tags:
- bgp
summary: Delete Flowspec
parameters:
- name: router
in: path
description: Router IP address
required: true
schema:
type: string
requestBody:
content:
'application/json':
schema:
$ref: '#/components/schemas/FlowSpec'
required: true
responses:
204:
description: No content
content: {}
400:
description: Bad request
content: {}
403:
description: Forbidden
content: {}
/scripts/json:
get:
tags:
- application
summary: Status of scripts loaded at startup
responses:
200:
description: OK
content:
application/json:
schema:
type: object
additionalProperties:
type: object
properties:
flowsReceived:
type: integer
description: Number of flow records received by script
example: 34566
alive:
type: boolean
description: Script running
example: false
eventsReceived:
type: integer
description: Number of events received by script
example: 12
cpuMs:
type: integer
description: CPU time in milliseconds
example: 2572
flowsLost:
type: integer
description: Number of flow records discarded before reaching
script
example: 0
gracefulExit:
type: boolean
description: Script completed without error
example: false
error:
type: string
description: Error information
example: 'script.js script.js#3 ReferenceError: "a" is not defined.'
eventsLost:
type: integer
description: Number of events discarded before reaching script
example: 0
requestsReceived:
type: integer
description: Number of HTTP requests handled by script
example: 23
requestsLost:
type: integer
description: Number of HTTP requests discarded before reaching
script
example: 0
/apps/json:
get:
tags:
- application
summary: Information about application scripts loaded at startup
responses:
200:
description: OK
content:
application/json:
schema:
type: object
additionalProperties:
type: object
properties:
entry:
type: string
description: HTML entry point
example: /html/
scripts:
type: array
items:
type: string
description: Script file name
example: script.js
404:
description: Not found
content: {}
/app/{name}/status:
get:
tags:
- application
summary: OK if application scripts exited without error or are still running
parameters:
- name: name
in: path
description: Application name
required: true
schema:
type: string
responses:
200:
description: OK
content:
text/plain:
schema:
type: string
example: OK
404:
description: Not found
content: {}
503:
description: Service Unavailable
content:
text/plain:
schema:
type: string
example: UNAVAILABLE
/prometheus/analyzer/txt:
get:
tags:
- prometheus
- server
summary: sFlow analyzer performance information as Prometheus metrics
responses:
200:
description: OK
content:
text/plain:
schema:
type: string
example: sflow_analyzer_agents 7
/prometheus/metrics/{agent}/{metric}/txt:
get:
tags:
- prometheus
- metrics
summary: Get Prometheus metrics
parameters:
- name: agent
in: path
description: IP address(es) or ALL
required: true
style: simple
explode: false
schema:
type: array
items:
type: string
example:
- ALL
- name: metric
in: path
description: Metric name(s) or ALL
required: true
style: simple
explode: false
schema:
type: array
items:
type: string
example:
- ALL
responses:
200:
description: OK
content:
text/plain:
schema:
type: string
example: sflow_load_one{agent="10.0.0.200",datasource="2.1",host="cl-leaf1"} 0.1
components:
schemas:
Group:
type: object
additionalProperties:
type: array
items:
type: string
description: IP address or CIDR
description: Assign IP address space to labels
example:
private:
- 10.0.0.0/8
- 172.16.0.0/12
- 192.168.0.0/16
other:
- 0.0.0.0/0
Tenant:
type: object
properties:
collectorAddress:
type: string
description: sFlow collector address
example: 10.0.0.1
collectorPort:
type: integer
description: sFlow collector UDP port
example: 6343
filters:
type: object
properties:
ifindex:
type: array
items:
type: string
description: Switch port SNMP ifIndex
example: 10.0.0.1_2
ifname:
type: array
items:
type: string
description: Switch port SNMP ifName
example: 10.0.0.1_eth3
cidr:
type: array
items:
type: string
description: IP address or CIDR
example: 10.0.0.0/24
mac:
type: array
items:
type: string
description: MAC address
example: D8D385B2DD2B
description: Select sFlow data sources
description: Forward selected sFlow records
example:
collectorAddress: 10.0.0.1
filters:
cidr:
- 10.0.0.0/24
Statistic:
type: object
properties:
agent:
type: string
description: IP address of sFlow agent
example: 10.0.0.1
dataSource:
type: string
description: Datasource reporting selected metric
example: "2.1"
metricName:
type: string
description: Name of metric summarized by statistic
metricValue:
type: number
description: Value of statistic
example: 0.4
metricN:
type: integer
description: Number of metrics summarized in statistic
example: 12
lastUpdate:
type: integer
description: Milliseconds since value of selected metric updated
example: 6074
lastUpdateMin:
type: integer
description: Milliseconds since value of most recent summarized metric updated
example: 6074
lastUpdateMax:
type: integer
description: Milliseconds since value of oldest summarized metric updated
example: 6074
description: Summary statistic for set of metrics
example:
metricName: med:ifinoctets
metricN: 59
lastUpdateMax: 57573
lastUpdateMin: 547
metricValue: 0
Forwarding:
type: object
required:
- address
properties:
address:
type: string
description: sFlow collector address
example: 10.0.0.1
port:
type: integer
description: sFlow collector port
default: 6343
example: 6343
agents:
type: array
description: sFlow agent address filter
items:
type: string
example: 10.0.0.254
description: Destination for forwarding sFlow
example:
address: 10.0.0.1
FlowSpec:
type: object
properties:
match:
type: object
properties:
source-port:
type: string
description: Source TCP/UDP port
example: "=53"
destination:
type: string
description: Destination prefix
example: 10.0.0.0/24
length:
type: string
description: Packet length - excluding L2 headers
example: "=0"
icmp-type:
type: string
description: ICMP type field
example: "=8"
icmp-code:
type: string
description: ICMP code field
example: "=0"
source:
type: string
description: Source prefix
example: 10.0.0.1/32
version:
type: string
description: IP version
example: "4"
tcp-flags:
type: string
description: FSRPAUECN
example: "=S"
protocol:
type: string
description: IP protocol
example: "=17"
fragment:
type: string
description: DIFL
example: "=I"
dscp:
type: string
description: IP ToS field
example: "=0"
port:
type: string
description: Source or destination TCP/UDP port
example: "=53"
destination-port:
type: string
description: Destination TCP/UDP port
example: "=53"
example:
protocol: "=17"
destination: 10.0.0.1
source-port: "=53"
then:
type: object
properties:
redirect-as:
type: string
description: Redirect VRF (AS-2byte)
example: "65001"
redirect-as4:
type: string
description: Redirect VRF (AS-4byte)
example: "4200000001"
redirect-ip:
type: string
description: Redirect VRF (IPv4)
example: "10.0.0.1"
redirect-nexthop:
type: string
description: Redirect to IP Next Hop
example: "10.0.0.1"
traffic-rate:
type: string
description: Rate limit in bytes per second
example: "0"
traffic-marking:
type: string
description: Set IP DSCP bits
example: "le"
traffic-action:
type: string
description: none, continue, sample, or sampleandcontinue
example: "sample"
communities:
type: string
description: Set additional communities
example: 100:300-100:250
example:
traffic-rate: "0"
description: Apply actions to selected flows
Metric:
type: object
properties:
agent:
type: string
description: IP address of sFlow agent
example: 10.0.0.1
dataSource:
type: string
description: Datasource reporting metric
example: "2.1"
metricName:
type: string
description: Metric name
metricValue:
type: number
description: Metric value
example: 0.4
lastUpdate:
type: integer
description: Milliseconds since value updated
example: 6074
description: Single metric value
Topology:
type: object
properties:
nodes:
type: object
additionalProperties:
type: object
properties:
agent:
type: string
description: sFlow agent address
example: 10.0.0.1
dpid:
type: string
description: OpenFlow DPID
example: "0000000000000003"
ports:
type: object
properties:
ifindex:
type: string
description: SNMP ifIndex
example: "1"
ofport:
type: string
description: OpenFlow port number
example: "1"
dpid:
type: string
description: OpenFlow DPID
example: "0000000000000003"
tags:
type: object
additionalProperties:
type: string
description: Tags and values
description: Named ports
tags:
type: object
additionalProperties:
type: string
description: Tags and values
description: Named nodes
example:
leaf1:
agent: 10.0.0.1
ports:
eth1:
ifindex: "2"
spine1:
agent: 10.0.0.2
ports:
eth2:
ifindex: "3"
links:
type: object
additionalProperties:
type: object
properties:
node2:
type: string
description: Node name
example: spine1
node1:
type: string
description: Node name
example: leaf1
port1:
type: string
description: Port name
example: eth1
port2:
type: string
description: Port name
example: eth2
tags:
type: object
additionalProperties:
type: string
description: Tags and values
description: Named links
example:
link1:
node1: leaf1
port1: eth1
node2: spine1
port2: eth2
description: Physical network topology
Map:
type: object
additionalProperties:
type: array
items:
type: string
description: Flow value
description: Map flow values to labels
example:
web:
- "80"
- "443"
- "8080"
mail:
- "25"
- "465"
- "587"
Route:
required:
- nexthop
type: object
properties:
nexthop:
type: string
description: IP address of next hop router
example: 10.0.0.1
nexthoplinklocal:
type: string
description: IP address of link
example: FE80:1::1
aspath:
type: string
description: AS path
example: 1-2-3
origin:
type: string
description: Route origin
example: IGP
localpref:
type: integer
description: Local preference
example: 100
med:
type: integer
description: Multi-exit descriminator
example: 0
communities:
type: string
description: Communities
example: 65000:666
description: BGP route entry
example:
nexthop: 10.0.0.1
Threshold:
required:
- metric
- value
type: object
properties:
metric:
type: string
description: Metric to apply threshold to
example: load_one
value:
type: number
description: Maximum value of metric
example: 10.0
filter:
type: object
additionalProperties:
type: array
items:
type: string
description: Filter on data source attributes
example:
os_name:
- linux
byFlow:
type: boolean
description: Set to true to generate a new event for each new flow exceeding
threshold
example: false
timeout:
type: integer
description: Seconds of hysteresis before re-arming threshold
example: 10
description: Threshold specification
example:
metric: load_one
value: 2
Flow:
required:
- value
type: object
properties:
keys:
type: string
description: List of flow keys
example: ipsource,ipdestination
value:
type: string
description: Numeric flow key
example: bytes
filter:
type: string
description: Boolean expression filtering flow keys
example: ipsource=10.0.0.1
n:
type: integer
description: Number of largest flows to maintain
example: 5
t:
type: integer
description: Smoothing factor (in seconds)
example: 10
fs:
type: string
description: Separates flow record fields
example: _SEP_
log:
type: boolean
description: Log flows
example: true
flowStart:
type: boolean
description: Log start of flow, otherwise record end of flow
example: true
activeTimeout:
type: integer
description: Number of seconds before flushing active flow
example: 60
ipfixCollectors:
type: array
description: Send IPFIX records to specified collectors
example:
- 10.0.0.2
items:
type: string
description: Flow metric specification
example:
keys: ipsource,ipdestination
value: bytes
|