v0.1.8
v0.1.8
Released at 2026-07-17
-
FEATURE: alerts: add
GlobalChurnTooHighalert to detect when global series churn or cardinality growth exceeds 10%. See #13. -
FEATURE: alerts: update
JobChurnTooHighalert (previouslyJobTooHighChurnRate) to also detect rapid cardinality growth. The threshold was raised from 10% to 20% and theforwindow extended from 15m to 30m to reduce false positives. See #13. -
FEATURE: alerts: replace the static-threshold
JobTooHighCardinalityalert with adaptive 3-sigma anomaly detection alertsGlobalCardinalityTooHighandJobCardinalityTooHigh. See #17. -
BUGFIX: vmestimator: add
intervallabel tovmestimator_estimator_insert_totalmetric in order to avoid exposing duplicate series when multiple streams share the samegroup_bybut use different intervals. The insert-rate panel in the bundled Grafana dashboard now deduplicates per-interval series withmax without(interval)before summing the remaining series, so the rate is not multiplied by the number of per-interval streams. See #20. -
BUGFIX: vmestimator: fix inaccurate cardinality estimates when the number of unique series was in the upper ~10% of the sparse mode. Estimates in this region could be off due to premature transition to a less precise (dense) counting mode. See hyperloglog#d44d606f.