ves-io-schema-graph-infraprotect-CustomAPI-ProtocolRepartitionQuery

Examples of performing infraprotect CustomAPI ProtocolRepartitionQuery

Usecase:

Get data for protocol repartition

Request:

Request using vesctl:

vesctl request rpc infraprotect.CustomAPI.ProtocolRepartitionQuery -i request.yaml --uri /public/namespaces/system/graph/infraprotect/protocolrepartition --http-method POST

where file request.yaml has following contents:

          endTime: "1580407200"
namespace: system
startTime: "1580403600"

        

vesctl yaml response:

          data:
- name: https
  values:
  - timestamp: 1591545000000
    value: "95179898.380000"
  - timestamp: 1591545600000
    value: "62261081.575556"
  - timestamp: 1591546200000
    value: "54906793.155556"
- name: ESP
  values:
  - timestamp: 1591545000000
    value: "15154566.842222"
  - timestamp: 1591545600000
    value: "17548093.977778"
  - timestamp: 1591546200000
    value: "17445504.755556"
- name: mysql
  values: []
- name: blp4
  values: []

        

Request using curl:

          curl -X 'POST' -d '{"namespace":"system","start_time":"1580403600","end_time":"1580407200"}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_2__8qnt6fwd5dvglr1xqq6l8b7w0000gp_T_go-build2604632300_b001_apidocs.test/host=C02FN35BMD6R/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/infraprotect/namespaces/system/graph/infraprotect/protocolrepartition'
        

curl response:

          HTTP/1.1 200 OK
Content-Length: 1023
Content-Type: application/json
Date: Fri, 03 Nov 2023 15:25:17 GMT
Vary: Accept-Encoding

{
  "data": [
    {
      "name": "https",
      "values": [
        {
          "timestamp": 1591545000000,
          "value": "95179898.380000",
          "trend_value": null
        },
        {
          "timestamp": 1591545600000,
          "value": "62261081.575556",
          "trend_value": null
        },
        {
          "timestamp": 1591546200000,
          "value": "54906793.155556",
          "trend_value": null
        }
      ]
    },
    {
      "name": "ESP",
      "values": [
        {
          "timestamp": 1591545000000,
          "value": "15154566.842222",
          "trend_value": null
        },
        {
          "timestamp": 1591545600000,
          "value": "17548093.977778",
          "trend_value": null
        },
        {
          "timestamp": 1591546200000,
          "value": "17445504.755556",
          "trend_value": null
        }
      ]
    },
    {
      "name": "mysql",
      "values": [
      ]
    },
    {
      "name": "blp4",
      "values": [
      ]
    }
  ]
}