​
Select Service
ves-io-schema-graph-l3l4-CustomAPI-TopTalkers
Published April 5, 2023 | Last modified September 10, 2026
Examples of performing l3l4 CustomAPI TopTalkers
Usecase:
Get data for traffic summary
Request:
Request using vesctl:
vesctl request rpc l3l4.CustomAPI.TopTalkers -i request.yaml --uri /public/namespaces/system/graph/l3l4/top_talkers/123 --http-method POST
where file request.yaml has following contents:
endTime: "2020-01-30T18:00:00Z"namespace: systemstartTime: "2020-01-30T17:00:00Z"vesctl yaml response:
data:- in: "1200" ip: 192.168.0.1 out: "450000"- in: "200" ip: 192.168.0.2- ip: 192.168.0.3 out: "50000"trafficUnit: TrafficUnitBpsRequest using curl:
curl -X 'POST' -d '{"namespace":"system","start_time":"2020-01-30T17:00:00Z","end_time":"2020-01-30T18:00:00Z"}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build1655461974_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/infraprotect/namespaces/system/graph/l3l4/top_talkers/123'curl response:
HTTP/1.1 200 OKContent-Length: 290Content-Type: application/jsonDate: Fri, 19 Jun 2026 22:03:07 GMTVary: Accept-Encoding
{ "traffic_unit": "TrafficUnitBps", "data": [ { "ip": "192.168.0.1", "in": "1200", "out": "450000" }, { "ip": "192.168.0.2", "in": "200", "out": "0" }, { "ip": "192.168.0.3", "in": "0", "out": "50000" } ]}