Ver Fonte

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

Christophe Furmaniak há 11 anos atrás
pai
commit
dd2b43dc73
1 ficheiros alterados com 1 adições e 3 exclusões
  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;
         });
       });