Skip to content

Commit a5cbfc8

Browse files
committed
fix(opentsdb): fixed opentsdb issue, fixes grafana#6206
1 parent d3b0905 commit a5cbfc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/app/plugins/datasource/opentsdb/datasource.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ function (angular, _, dateMath) {
419419
return target.metric === metricData.metric;
420420
} else {
421421
return target.metric === metricData.metric &&
422-
_.all(target.tags, function(tagV, tagK) {
422+
_.every(target.tags, function(tagV, tagK) {
423423
interpolatedTagValue = templateSrv.replace(tagV, options.scopedVars, 'pipe');
424424
return metricData.tags[tagK] === interpolatedTagValue || interpolatedTagValue === "*";
425425
});

0 commit comments

Comments
 (0)