Merge branch 'feature/sortseries' of https://github.com/Verivox-GmbH/grafana-zabbix into Verivox-GmbH-feature/sortseries

This commit is contained in:
Alexander Zobnin
2017-10-16 15:31:11 +03:00
3 changed files with 23 additions and 4 deletions

View File

@@ -36,6 +36,12 @@ function limit(order, n, orderByFunc, timeseries) {
}
}
function sortSeries(direction, timeseries) {
return _.orderBy(timeseries, [function (ts) {
return ts.target.toLowerCase();
}], direction);
}
function setAlias(alias, timeseries) {
timeseries.target = alias;
return timeseries;
@@ -125,6 +131,7 @@ let metricFunctions = {
sumSeries: sumSeries,
top: _.partial(limit, 'top'),
bottom: _.partial(limit, 'bottom'),
sortSeries: sortSeries,
timeShift: timeShift,
setAlias: setAlias,
setAliasByRegex: setAliasByRegex,

View File

@@ -181,6 +181,15 @@ addFuncDef({
defaultParams: [5, 'avg'],
});
addFuncDef({
name: 'sortSeries',
category: 'Filter',
params: [
{ name: 'direction', type: 'string', options: ['asc', 'desc'] }
],
defaultParams: ['asc']
});
// Trends
addFuncDef({