v0.1.16
Released at 2027-09-08
- FEATURE: vmestimator: add
churn_intervalstream config option. When set, vmestimator emitscardinality_churn_ratiometrics measuring how quickly the series set changes within the measurement window. The ratio is computed as(2*|A∪B| - |A| - |B|) / |A∪B|whereAis the retained HLL snapshot andBis the current sketch, resulting in a value in[0, 1]where0means a stable series set and1means complete churn. See churn-calculation and #24. - FEATURE: vmestimator: simplify overflow handling in the deduplicator. Expose
vmestimator_deduplication_passed_total,vmestimator_deduplication_dropped_total,vmestimator_deduplication_bloom_filter_size, andvmestimator_deduplication_bloom_filter_max_sizemetrics for monitoring deduplication effectiveness. See #48.