Browse Source

change(influxdb): removed derivative functions from aggregator list

Torkel Ödegaard 10 years ago
parent
commit
2790e4e819
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/plugins/datasource/influxdb/queryCtrl.js

+ 1 - 1
public/app/plugins/datasource/influxdb/queryCtrl.js

@@ -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);