PR for request #562
https://github.com/alexanderzobnin/grafana-zabbix/issues/562
This commit is contained in:
@@ -76,6 +76,15 @@ addFuncDef({
|
||||
defaultParams: [0.2],
|
||||
});
|
||||
|
||||
addFuncDef({
|
||||
name: 'transformNull',
|
||||
category: 'Transform',
|
||||
params: [
|
||||
{name: 'number', type: 'float'}
|
||||
],
|
||||
defaultParams: [0],
|
||||
});
|
||||
|
||||
// Aggregate
|
||||
|
||||
addFuncDef({
|
||||
@@ -161,6 +170,24 @@ addFuncDef({
|
||||
|
||||
// Filter
|
||||
|
||||
addFuncDef({
|
||||
name: 'removeAboveValue',
|
||||
category: 'Filter',
|
||||
params: [
|
||||
{name: 'number', type: 'float'},
|
||||
],
|
||||
defaultParams: [0],
|
||||
});
|
||||
|
||||
addFuncDef({
|
||||
name: 'removeBelowValue',
|
||||
category: 'Filter',
|
||||
params: [
|
||||
{name: 'number', type: 'float'},
|
||||
],
|
||||
defaultParams: [0],
|
||||
});
|
||||
|
||||
addFuncDef({
|
||||
name: 'top',
|
||||
category: 'Filter',
|
||||
|
||||
Reference in New Issue
Block a user