-
URL
/api/config -
Method:
GET -
URL Params none
-
Success Response:
- Code: 200
Content:
{ "sources": [ "gate", "swi6" ], "ports": [ 80, 22, 23 ], "stored_output_formats": [], "stored_filters": [], "daemon_running": true }
- Code: 200
Content:
-
Error Response:
- Code: 400 BAD REQUEST
Content:
{"code": 400, "error": "400 - Bad Request. Probably wrong or not enough arguments."}
OR
- Code: 404 NOT FOUND
Content:
{"code": 404, "error": "400 - Not found. "}
- Code: 400 BAD REQUEST
Content:
-
Sample Call:
curl localhost/nfsen-ng/api/config
-
URL
/api/graph?datestart=1490484000&dateend=1490652000&type=flows&sources[0]=gate&protocols[0]=tcp&protocols[1]=icmp&display=sources -
Method:
GET -
URL Params
datestart=[integer]Unix timestampdateend=[integer]Unix timestamptype=[string]Type of data to show: flows/packets/trafficsources=[array]protocols=[array]ports=[array]display=[string]can besources,protocolsorports
There can't be multiple sources and multiple protocols both. Either one source and multiple protocols, or one protocol and multiple sources.
-
Success Response:
- Code: 200
Content:
{"data": { "1490562300":[2.1666666667,94.396666667], "1490562600":[1.0466666667,72.976666667],... },"start":1490562300,"end":1490590800,"step":300,"legend":["swi6_flows_tcp","gate_flows_tcp"]}
- Code: 200
Content:
-
Error Response:
- Code: 400 BAD REQUEST
Content:json {"code": 400, "error": "400 - Bad Request. Probably wrong or not enough arguments."}
OR
- Code: 404 NOT FOUND
Content:json {"code": 404, "error": "400 - Not found. "}
- Code: 400 BAD REQUEST
-
Sample Call:
curl -g "http://localhost/nfsen-ng/api/graph?datestart=1490484000&dateend=1490652000&type=flows&sources[0]=gate&protocols[0]=tcp&protocols[1]=icmp&display=sources"
-
URL
/api/flows?datestart=1482828600&dateend=1490604300&sources[0]=gate&sources[1]=swi6&filter=&limit=100&aggregate=srcip&sort=&output[format]=auto -
Method:
GET -
URL Params
datestart=[integer]Unix timestampdateend=[integer]Unix timestampsources=[array]filter=[string]pcap-syntaxed filterlimit=[int]max. returned rowsaggregate=[string]can bebidirectionalor a valid nfdump aggregation string (e.g.srcip4/24, dstport), but not both at the same timesort=[string](will probably cease to exist, as ordering is done directly in aggregation) e.g.tstartoutput=[array]can contain[format] = auto|line|long|extendedand[IPv6]
-
Success Response:
- Code: 200
Content:
[["ts","td","sa","da","sp","dp","pr","ipkt","ibyt","opkt","obyt"], ["2017-03-27 10:40:46","0.000","85.105.45.96","0.0.0.0","0","0","","1","46","0","0"], ...
- Code: 200
Content:
-
Error Response:
- Code: 400 BAD REQUEST
Content:json {"code": 400, "error": "400 - Bad Request. Probably wrong or not enough arguments."}
OR
- Code: 404 NOT FOUND
Content:json {"code": 404, "error": "400 - Not found. "}
- Code: 400 BAD REQUEST
-
Sample Call:
curl -g "http://localhost/nfsen-ng/api/flows?datestart=1482828600&dateend=1490604300&sources[0]=gate&sources[1]=swi6&filter=&limit=100&aggregate[]=srcip&sort=&output[format]=auto"
-
URL
/api/stats?datestart=1482828600&dateend=1490604300&sources[0]=gate&sources[1]=swi6&for=dstip&filter=&top=10&limit=100&aggregate[]=srcip&sort=&output[format]=auto -
Method:
GET -
URL Params
datestart=[integer]Unix timestampdateend=[integer]Unix timestampsources=[array]filter=[string]pcap-syntaxed filtertop=[int]return top N rowsfor=[string]field to get the statistics for. with optional ordering field as suffix, e.g.ip/flowslimit=[string]limit output to records above or below oflimite.g.500Koutput=[array]can contain[IPv6]
-
Success Response:
- Code: 200
Content:
[ ["Packet limit: > 100 packets"], ["ts","te","td","pr","val","fl","flP","ipkt","ipktP","ibyt","ibytP","ipps","ipbs","ibpp"], ["2017-03-27 10:38:20","2017-03-27 10:47:58","577.973","any","193.5.80.180","673","2.7","676","2.5","56581","2.7","1","783","83"], ... ]
- Code: 200
Content:
-
Error Response:
- Code: 400 BAD REQUEST
Content:json {"code": 400, "error": "400 - Bad Request. Probably wrong or not enough arguments."}
OR
- Code: 404 NOT FOUND
Content:json {"code": 404, "error": "400 - Not found. "}
- Code: 400 BAD REQUEST
-
Sample Call:
curl -g "http://localhost/nfsen-ng/api/stats?datestart=1482828600&dateend=1490604300&sources[0]=gate&sources[1]=swi6&for=dstip&filter=&top=10&limit=100&aggregate[]=srcip&sort=&output[format]=auto"