Преглед изворни кода

feat(opentsdb): add mock method for detecting targets with template values

bergquist пре 9 година
родитељ
комит
4c2f2eeb58
1 измењених фајлова са 5 додато и 0 уклоњено
  1. 5 0
      public/app/plugins/datasource/opentsdb/datasource.js

+ 5 - 0
public/app/plugins/datasource/opentsdb/datasource.js

@@ -102,6 +102,11 @@ function (angular, _, dateMath) {
       }.bind(this));
     };
 
+    this.targetContainsTemplate = function(target) {
+      console.log(target);
+      return false;
+    };
+
     this.performTimeSeriesQuery = function(queries, start, end) {
       var msResolution = false;
       if (this.tsdbResolution === 2) {