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
The cassandra_storage_hints_in_progress is currently exposed as a metric of type counter.
This is incorrect, because according to the specification of Prometheus metric types, a counter must only ever increase and never decrease (except being reset to zero on restart). However, the “hints in progress” metric will decrease whenever hints have been successfully processed.
Therefore, this metrics must be exposed as a gauge instead of a counter.
The text was updated successfully, but these errors were encountered:
smarsching
added a commit
to smarsching/cassandra-exporter
that referenced
this issue
Jan 22, 2025
The
cassandra_storage_hints_in_progress
is currently exposed as a metric of type counter.This is incorrect, because according to the specification of Prometheus metric types, a counter must only ever increase and never decrease (except being reset to zero on restart). However, the “hints in progress” metric will decrease whenever hints have been successfully processed.
Therefore, this metrics must be exposed as a gauge instead of a counter.
The text was updated successfully, but these errors were encountered: