Get cluster network usage trend (Mbps)

Get cluster network usage trend (Mbps)

get

Get the per-minute trend of the overall network usage in the cluster, categorized by inbound and outbound.

Query parameters
clusterIdsstringRequired
startstringRequired

Start date for the query

endstringRequired

End date for the query

Responses
200
OK
*/*
get
GET /v1/monitoring-clusters/metric/network/result/transition?clusterIds=text&start=text&end=text HTTP/1.1
Host: 
Accept: */*
200

OK

[
  {
    "metrics": {
      "cluster": "thingcluster",
      "measure": "inbound"
    },
    "samples": [
      3175670.24444,
      3497435.7,
      3347020
    ],
    "timestamps": [
      1685620800,
      1685620860,
      1685620920
    ],
    "values": null
  },
  {
    "metrics": {
      "cluster": "thingcluster",
      "measure": "outbound"
    },
    "samples": [
      3543429.77778,
      3879819.71111,
      3899043.1
    ],
    "timestamps": [
      1685620800,
      1685620860,
      1685620920
    ],
    "values": null
  }
]

Was this helpful?