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
right now, clicking on derivative or non negative derivative in the UI inserts
derivative
non negative derivative
|> derivative(unit: v.windowPeriod, nonNegative: false)
but the unit isn't a window period.
most likely, they want something like this:
|> aggregateWindow(every: v.windowPeriod, fn: max) |> derivative(unit: 1s, nonNegative: false)
We may need to update the label in the UI but i'm not sure.
The text was updated successfully, but these errors were encountered:
Hard code derivative to 1 second in the UI. And also the nonNegative derivative as well.
Sorry, something went wrong.
fixed in #19776, but it needs to get added to the UI repo
russorat
121watts
Successfully merging a pull request may close this issue.
right now, clicking on
derivative
ornon negative derivative
in the UI insertsbut the unit isn't a window period.
most likely, they want something like this:
We may need to update the label in the UI but i'm not sure.Acceptance Criteria
The text was updated successfully, but these errors were encountered: