-
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
Select mean and percentile within one query and group by gives non-distinct lines #8164
Comments
Might be similar to #8072. I've also just noticed that it works with percentile("responseTime", 99). |
Closing this in favor of #8167. |
I'll take a look at this tomorrow then. |
@luhn do you have a reproducer I could look at? @DAfanasyev does this still affect you? |
The query I'm seeing it on is something like this:
I'll see if I can make something reproducible. |
Okay, here's a data file and a sample query, along with the output I'm seeing. |
Hm... curious. The I'll see if I can find the commit that fixes it. |
Looks like it's fixed as of be3bce5. Unfortunately, I do not envision me being able to backport that easily. Is it alright if this fix comes as part of 1.3? I believe we're planning on formally releasing v1.2.3 sometime this week and it's probably unlikely we'll get a v1.2.4 before v1.3.0 is released. |
I'm eager to upgrade to 1.3, so personally I have no problem with not backporting it. I'll probably try out the nightly build in the meantime. Any idea when 1.3 will be released? |
I would expect 1.3 to land sometime in June. No promises, but that's the current estimated timeframe. Keep an eye out for the release candidate! |
System info:
I'm using JMeter plugin to push metrics into InfluxDB (https://github.com/NovaTecConsulting/JMeter-InfluxDB-Writer)
Here is how plugin stores information (some measurements are skipped):
Then I'm trying to create an overview table with mean and 90th percentile for each "requestName" in Grafana using following InfluxQL request:
Actual behavior:
Expected behavior:
I've also noticed that group by doesn't return distinct result only when percentile function is used (at least in my case):
The text was updated successfully, but these errors were encountered: