diff --git a/public/app/plugins/datasource/influxdb/queryCtrl.js b/public/app/plugins/datasource/influxdb/queryCtrl.js index 47f294ff6e7..186ffaf1a11 100644 --- a/public/app/plugins/datasource/influxdb/queryCtrl.js +++ b/public/app/plugins/datasource/influxdb/queryCtrl.js @@ -180,7 +180,7 @@ function (angular, _, InfluxQueryBuilder) { $scope.getFieldSegments = function() { var fieldsQuery = $scope.queryBuilder.buildExploreQuery('FIELDS'); return $scope.datasource.metricFindQuery(fieldsQuery) - .then($scope.transformToSegments) + .then($scope.transformToSegments(false)) .then(null, $scope.handleQueryError); };