Get ingress controller network usage trend (kBs)

Get ingress controller network usage trend (kBs)

get

Get the per-minute trend of network usage for the ingress controller, categorized by inbound and outbound.

Query parameters
clusterIdsstringrequired

Cluster ID for the query target

controllerIdsstringrequired

Name of the Ingress Controller for the query target

startstringrequired

Start date/time of the query (YYYYmmddHHMMss)

endstringrequired

End date/time of the query (YYYYmmddHHMMss)

Responses
curl -L \
  --url '/v2/monitoring-ingress/metric/controller-network-pressure/result/transition?clusterIds=text&controllerIds=text&start=text&end=text'
[
  {
    "metrics": {
      "cluster": "thingcluster",
      "measure": "inbound"
    },
    "timestamp": 1687741080,
    "value": 43.46666666666667
  }
]

(deprecated) Get ingress controller network usage trend (kBs)- After 4.8.1, it will no longer be supported.

get

Get the per-minute trend of network usage for the ingress controller, categorized by inbound and outbound.

Query parameters
clusterIdsstringrequired
startstringrequired

Start date for the query

endstringrequired

End date for the query

Responses
curl -L \
  --url '/v1/monitoring-ingress/metric/controller-network-pressure/result/transition?clusterIds=text&start=text&end=text'
[
  {
    "metrics": {
      "cluster": "thingcluster",
      "measure": "inbound"
    },
    "timestamp": 1687741080,
    "value": 43.46666666666667
  }
]

Was this helpful?