Browse Source

Changed default OpenTSDB downsample aggregator to avg, #1438

Torkel Ödegaard 11 years ago
parent
commit
7293ee0894
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/app/features/opentsdb/queryCtrl.js

+ 1 - 1
src/app/features/opentsdb/queryCtrl.js

@@ -19,7 +19,7 @@ function (angular, _, kbn) {
       }
       }
 
 
       if (!$scope.target.downsampleAggregator) {
       if (!$scope.target.downsampleAggregator) {
-        $scope.target.downsampleAggregator = 'sum';
+        $scope.target.downsampleAggregator = 'avg';
       }
       }
 
 
       $scope.$on('typeahead-updated', function() {
       $scope.$on('typeahead-updated', function() {