ves-io-schema-views-network_policy_view-CustomDataAPI-NetworkPolicyHits
On This Page:
Examples of performing views_network_policy_view CustomDataAPI NetworkPolicyHits
Usecase:
Get Network Policy hits
Request:
Request using vesctl:
vesctl request rpc views_network_policy_view.CustomDataAPI.NetworkPolicyHits -i request.yaml --uri /public/namespaces/system/network_policy_view/hits --http-method POST
where file request.yaml has following contents:
endTime: "1593622800"
groupBy:
- POLICY_RULE
- SITE
labelFilter:
- label: POLICY
value: policy-1
namespace: system
startTime: "1593619200"
vesctl yaml response:
data:
- id:
policyRule: rule-1
site: site-1
metric:
- timestamp: 1593622800
value: "100"
- id:
policyRule: rule-1
site: site-2
metric:
- timestamp: 1593622800
value: "50"
Request using curl:
curl -X 'POST' -d '{"namespace":"system","label_filter":[{"label":"POLICY","value":"policy-1"}],"group_by":["POLICY_RULE","SITE"],"start_time":"1593619200","end_time":"1593622800"}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build1372770011_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/data/namespaces/system/network_policy_view/hits'
curl response:
HTTP/1.1 200 OK
Content-Length: 555
Content-Type: application/json
Date: Thu, 28 Jul 2022 12:14:43 GMT
Vary: Accept-Encoding
{
"data": [
{
"id": {
"namespace": "",
"policy": "",
"policy_rule": "rule-1",
"action": "",
"site": "site-1"
},
"metric": [
{
"timestamp": 1593622800,
"value": "100"
}
]
},
{
"id": {
"namespace": "",
"policy": "",
"policy_rule": "rule-1",
"action": "",
"site": "site-2"
},
"metric": [
{
"timestamp": 1593622800,
"value": "50"
}
]
}
]
}