Mitsuhiro Tanda 9 лет назад
Родитель
Сommit
540436e9d5
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      public/app/plugins/datasource/cloudwatch/datasource.js

+ 2 - 2
public/app/plugins/datasource/cloudwatch/datasource.js

@@ -23,7 +23,7 @@ function (angular, _, moment, dateMath, CloudWatchAnnotationQuery) {
 
       var queries = [];
       options = angular.copy(options);
-      options.targets = this.expandTemplateVariable(options.targets);
+      options.targets = this.expandTemplateVariable(options.targets, templateSrv);
       _.each(options.targets, function(target) {
         if (target.hide || !target.namespace || !target.metricName || _.isEmpty(target.statistics)) {
           return;
@@ -338,7 +338,7 @@ function (angular, _, moment, dateMath, CloudWatchAnnotationQuery) {
       });
     }
 
-    this.expandTemplateVariable = function(targets) {
+    this.expandTemplateVariable = function(targets, templateSrv) {
       return _.chain(targets)
       .map(function(target) {
         var dimensionKey = null;