change(influxdb): removed derivative functions from aggregator list

This commit is contained in:
Torkel Ödegaard
2015-09-23 09:40:53 +02:00
parent 8bb2b5e290
commit 2790e4e819

View File

@@ -104,7 +104,7 @@ function (angular, _, InfluxQueryBuilder) {
$scope.getFunctions = function () { $scope.getFunctions = function () {
var functionList = ['count', 'mean', 'sum', 'min', 'max', 'mode', 'distinct', 'median', var functionList = ['count', 'mean', 'sum', 'min', 'max', 'mode', 'distinct', 'median',
'derivative', 'non_negative_derivative', 'stddev', 'first', 'last' 'stddev', 'first', 'last'
]; ];
return $q.when(_.map(functionList, function(func) { return $q.when(_.map(functionList, function(func) {
return uiSegmentSrv.newSegment(func); return uiSegmentSrv.newSegment(func);