Get the trend of ETCD DB size

Get the trend of ETCD DB size

get

Get the per-minute trend of ETCD's database size on a node-by-node basis.

Query parameters
clusterIdsstringrequired
startstringrequired
endstringrequired
Responses
curl -L \
  --url '/v1/monitoring-etcd/metric/db-size/result/transition?clusterIds=text&start=text&end=text'
[
  {
    "metrics": {
      "cluster": "thingcluster",
      "node": "apps-gpu-v100"
    },
    "samples": [
      136192000,
      136192000,
      136192000
    ],
    "timestamps": [
      136192000,
      136192000,
      136192000
    ],
    "values": null
  }
]

Was this helpful?