-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add internal stat to record number of dropped series/measurements #7697
Comments
Related to: #7691. |
The number of series dropped can be seen using a |
Using the
in a busy system with >1M series, the number of net dropped series becomes harder to discern. Sub-queries and the I was going to open some other PRs to add a Also, I'm not sure if these stats will be effectively moot when the TSI is merged. |
Add stats on dropped measurements and series; Fixes #7697
Feature Request
Proposal: Add internal stats to track the number of series and measurements dropped.
Current behavior: Series and measurements are dropped silently when shard are dropped or
DROP
statements are executed.Desired behavior: It would be nice to have
num_series_dropped
andnum_measurements_dropped
fields in thedatabase
measurement or whichever internal measurement makes the most sense.Use case: There is currently no easy way to track the number of dropped series and measurements. Knowing the number of dropped series/measurements is useful for determining the rate series are being removed by a retention policy capacity planning. It is also hard to determine the number of series measurements removed when
DROP
statements are executed.The text was updated successfully, but these errors were encountered: