You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding onto #1821 and #3930
Currently TOP does not support nested functions. My use case is to have a Top(Sum(<field>),1) or Top(Percentile(<field>,90),1) to show a worst performing transaction. Can we have a new feature on TOP to accept and work on the output of another aggregate function?
It should honor all the group conditions, so below query should give me worst performing transactions be each hour.
SELECT top(percentile(ResponseTime,90),1) FROM "Application_Transaction_Metrics" WHERE "State" =~ /California$/ AND time > 1452623400s and time < now() GROUP BY time(1h), "State", BusinessTransaction
The text was updated successfully, but these errors were encountered:
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.
Adding onto #1821 and #3930
Currently TOP does not support nested functions. My use case is to have a
Top(Sum(<field>),1)
orTop(Percentile(<field>,90),1)
to show a worst performing transaction. Can we have a new feature on TOP to accept and work on the output of another aggregate function?It should honor all the group conditions, so below query should give me worst performing transactions be each hour.
SELECT top(percentile(ResponseTime,90),1) FROM "Application_Transaction_Metrics" WHERE "State" =~ /California$/ AND time > 1452623400s and time < now() GROUP BY time(1h), "State", BusinessTransaction
The text was updated successfully, but these errors were encountered: