flux derivative no negative

This commit is contained in:
mwiegand 2021-10-27 18:01:33 +02:00
parent bbef19a73d
commit e5b1bc0921

View file

@ -5,7 +5,7 @@ from(bucket: "${bucket}")
|> filter(fn: (r) => ${' or '.join(f'r["{key}"] == "{value}"' for value in values)}) |> filter(fn: (r) => ${' or '.join(f'r["{key}"] == "{value}"' for value in values)})
% endfor % endfor
% if function == 'derivative': % if function == 'derivative':
|> derivative() |> derivative(nonNegative: true)
% endif % endif
% if negative: % if negative:
|> map(fn: (r) => ({r with _value: r._value * - 1.0})) |> map(fn: (r) => ({r with _value: r._value * - 1.0}))