-
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
Wire up DIFFERENCE aggregate #1825
Comments
From tsdb/executor.go#L443 this seems to be implemented now, is that correct? |
Any news on when this might come? |
I don't see this issue on 9.5 changelog https://github.com/influxdb/influxdb/blob/master/CHANGELOG.md |
@Vebryn it hasn't been completed, so it is not on the CHANGELOG. |
Ok, thank you, let's wait and see |
Looking forward to this. |
The query engine is undergoing heavy refactoring. Removing help wanted label for now. |
Hi, Are there any ETA for this when it will be released? |
What about |
Could you please add a shorter alias for this function, like "diff" or "delta" instead of "non_negative_derivative"! |
Is there currently anyway to define different grouping functions for time and between series? So we can do mean_series(last("value") - first("value")). |
@jazdw no, there are no composite functions yet. That specific case is an interesting feature request, can you open a new issue to track it? |
As mentioned in my post to the mailing list we are experimenting with simplifying our open GitHub Issues. This feature request has been rolled into an aggregate issue for all function requests, so that we can close this issue until we are ready to work on it. You may continue to make comments here. Closing the issue does not mean we are rejecting this idea. |
I'm beginning to work on this. |
The difference function is implemented very similar to how derivative is implemented. It is an aggregate function that acts over the entire aggregate. This function will also have the same problems that derivative has with getting values from the previous interval or point. This will be fixed separately as part of #5943. Fixes #1825.
The difference function is implemented very similar to how derivative is implemented. It is an aggregate function that acts over the entire aggregate. This function will also have the same problems that derivative has with getting values from the previous interval or point. This will be fixed separately as part of #5943. Fixes #1825.
The difference function is implemented very similar to how derivative is implemented. It is an aggregate function that acts over the entire aggregate. This function will also have the same problems that derivative has with getting values from the previous interval or point. This will be fixed separately as part of #5943. Fixes #1825.
The difference function is implemented very similar to how derivative is implemented. It is an aggregate function that acts over the entire aggregate. This function will also have the same problems that derivative has with getting values from the previous interval or point. This will be fixed separately as part of #5943. Fixes #1825.
The difference function is implemented very similar to how derivative is implemented. It is an aggregate function that acts over the entire aggregate. This function will also have the same problems that derivative has with getting values from the previous interval or point. This will be fixed separately as part of #5943. Fixes #1825.
I know this is an old closed issue, but it still pops up when googling. |
…ttons-selection-step Data loader/remove sidebar buttons selection step
If the query is like this:
It will return a series with the difference between each value.
If the query is like this:
It will return the difference of the min value for each 5 minute window of time.
The text was updated successfully, but these errors were encountered: