Просмотр исходного кода

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

bergquist 9 лет назад
Родитель
Сommit
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) {