浏览代码

Display tag values whenever a tag is part of the query (opentsdb datasource)

Christophe Furmaniak 11 年之前
父节点
当前提交
dd2b43dc73
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      src/app/services/opentsdb/opentsdbDatasource.js

+ 1 - 3
src/app/services/opentsdb/opentsdbDatasource.js

@@ -33,9 +33,7 @@ function (angular, _, kbn) {
       var groupByTags = {};
       _.each(queries, function(query) {
         _.each(query.tags, function(val, key) {
-          if (val === "*") {
-            groupByTags[key] = true;
-          }
+          groupByTags[key] = true;
         });
       });