We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
When comparing the number of returned series from a query to the same query with count() wrapped around it the results are different.
count()
The same count query sent directly to a querier and bypassing the query-frontend returns the correct result.
count
The text was updated successfully, but these errors were encountered:
logfmt will returns labels that will be the same across different shard the only way to fix it is to shard the sum but not the count.
count is distinct count so you can’t have it once you mutate labels across shards.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
When comparing the number of returned series from a query to the same query with
count()
wrapped around it the results are different.The same
count
query sent directly to a querier and bypassing the query-frontend returns the correct result.The text was updated successfully, but these errors were encountered: