You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was exploring some of the internal Thanos metrics, and noticed some inconsistencies with the query component.
Each component has a thanos_status metric, except query, where it is called status.
Results from http://<query>/metrics:
# HELP status Represents status (0 indicates success, 1 indicates failure) of the component.
# TYPE status gauge
status{check="healthy",component="query"} 1
status{check="ready",component="query"} 1
Results from http://<compact/bucket/sidecar/store>/metrics:
# HELP thanos_status Represents status (0 indicates success, 1 indicates failure) of the component.
# TYPE thanos_status gauge
thanos_status{check="healthy",component="sidecar"} 1
thanos_status{check="ready",component="sidecar"} 1
What you expected to happen:
Metric naming should be consistent across all components.
The text was updated successfully, but these errors were encountered:
Thanos, Prometheus and Golang version used:
Thanos: 0.11
Promethus: 2.16
Golang: 1.13.6
What happened:
I was exploring some of the internal Thanos metrics, and noticed some inconsistencies with the query component.
Each component has a
thanos_status
metric, except query, where it is calledstatus
.Results from
http://<query>/metrics
:Results from
http://<compact/bucket/sidecar/store>/metrics
:What you expected to happen:
Metric naming should be consistent across all components.
The text was updated successfully, but these errors were encountered: