From 72ab721f2263bc0f35f647e7e99e86bb5fb53baf Mon Sep 17 00:00:00 2001 From: Marco Vito Moscaritolo Date: Mon, 21 Apr 2014 18:06:13 +0200 Subject: [PATCH] Added where condiction operators --- src/app/controllers/influxTargetCtrl.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/controllers/influxTargetCtrl.js b/src/app/controllers/influxTargetCtrl.js index 7ad82ae6807..e481970c254 100644 --- a/src/app/controllers/influxTargetCtrl.js +++ b/src/app/controllers/influxTargetCtrl.js @@ -18,6 +18,7 @@ function (angular) { $scope.rawQuery = false; $scope.functions = ['count', 'mean', 'sum', 'min', 'max', 'mode', 'distinct', 'median', 'derivative', 'stddev', 'first', 'last']; + $scope.operators = ['=', '=~', '>', '<', '!~', '<>']; $scope.oldSeries = $scope.target.series; $scope.$on('typeahead-updated', function(){ $timeout($scope.get_data);