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)})
% endfor
% if function == 'derivative':
|> derivative()
|> derivative(nonNegative: true)
% endif
% if negative:
|> map(fn: (r) => ({r with _value: r._value * - 1.0}))