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
removeAboveValue - replace value with NULL if value > N
removeBelowValue - replace value with NULL if value < N;
transformNull - replace null values with N
Example of removeAboveValue(N):
Input series (";" as separator): 0;1;2;3;4;5;6
Function definition: "removeAboveValue(3)"
Output series: 0;1;2;3;null;null;null
Example of removeBelowValue(N)
Input series (";" as separator): 0;1;2;3;4;5;6
Function definition: "removeBelowValue(3)"
Output series: null;null;null;3;4;5;6
Example of transformNull(N):
Input series (";" as separator): 0;null;2;null;4;null;6
Function definition: "transformNull(3)"
Output series: 0;3;2;3;4;3;6
The text was updated successfully, but these errors were encountered:
gelonsoft
changed the title
Feature request: Implement removeAboveValue and removeBelowValue to filter the data
Feature request: Implement removeAboveValue, removeBelowValue and transformNull to filter/transform the data
Apr 19, 2018
gelonsoft
pushed a commit
to gelonsoft/grafana-zabbix
that referenced
this issue
Apr 19, 2018
I'm submitting a ...
Implement removeAboveValue, removeBelowValue and transformNull functions like in Graphite ( http://graphite.readthedocs.io/en/latest/functions.html )
removeAboveValue - replace value with NULL if value > N
removeBelowValue - replace value with NULL if value < N;
transformNull - replace null values with N
Example of removeAboveValue(N):
Example of removeBelowValue(N)
Example of transformNull(N):
The text was updated successfully, but these errors were encountered: