​
Select Service
ves-io-schema-service_policy-CustomDataAPI-ServicePolicyHitsLatency
Published April 5, 2023 | Last modified March 20, 2025
Examples of performing service_policy CustomDataAPI ServicePolicyHitsLatency
Usecase:
Get Service Policy latency
Request:
Request using vesctl:
vesctl request rpc service_policy.CustomDataAPI.ServicePolicyHitsLatency -i request.yaml --uri /public/namespaces/system/service_policy/latency --http-method POST
where file request.yaml has following contents:
endTime: "1593622800"
groupBy:
- POLICY
labelFilter:
- label: VIRTUAL_HOST
value: virtual-host-1
namespace: system
startTime: "1593619200"
Copied!
vesctl yaml response:
data:
- id:
policy: service-policy-1
metric:
- timestamp: 1593622800
value: "0.02"
- id:
policyRule: service-policy-2
metric:
- timestamp: 1593622800
value: "0.04"
Copied!
Request using curl:
curl -X 'POST' -d '{"namespace":"system","label_filter":[{"label":"VIRTUAL_HOST","value":"virtual-host-1"}],"group_by":["POLICY"],"start_time":"1593619200","end_time":"1593622800"}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build436303540_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/data/namespaces/system/service_policy/latency'
Copied!
curl response:
HTTP/1.1 200 OK
Content-Length: 750
Content-Type: application/json
Date: Tue, 11 Mar 2025 00:56:31 GMT
Vary: Accept-Encoding
{
"data": [
{
"id": {
"namespace": "",
"policy": "service-policy-1",
"policy_rule": "",
"policy_set": "",
"action": "",
"site": "",
"virtual_host": ""
},
"metric": [
{
"timestamp": 1593622800,
"value": "0.02",
"trend_value": null
}
]
},
{
"id": {
"namespace": "",
"policy": "",
"policy_rule": "service-policy-2",
"policy_set": "",
"action": "",
"site": "",
"virtual_host": ""
},
"metric": [
{
"timestamp": 1593622800,
"value": "0.04",
"trend_value": null
}
]
}
],
"step": ""
}
Copied!