ETCD 디스크 처리 대기 시간 추이

ETCD 디스크 처리 대기 시간 추이

ETCD가 로그 항목이나 가장 최근 변경 사항의 증분 snapshot을 디스크에 적용할 시 처리 대기 시간 분당 추이를 조회한다.

get

/v1/monitoring-etcd/metric/disk-sync-duration/result/transition

Query parameters
clusterIdsstringrequired

클러스터 아이디

startstringrequired

조회 시작일

endstringrequired

조회 종료일

Responses
curl -L \
  --url '/v1/monitoring-etcd/metric/disk-sync-duration/result/transition?clusterIds=text&start=text&end=text'
[
  {
    "metrics": {
      "cluster": "thingcluster",
      "measure": "backend-commit"
    },
    "samples": [
      0.30088,
      0.28477,
      0.29387
    ],
    "timestamps": [
      1687741080,
      1687741140,
      1687741200
    ],
    "values": null
  }
]

Last updated

Was this helpful?