mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
fix(OpenTSDB): fixed issue with OpenTSDB and query to result matching, Fixes #2315
This commit is contained in:
parent
c2da54139a
commit
3f2c1de28d
@ -50,6 +50,9 @@ function (angular, _, kbn) {
|
||||
var metricToTargetMapping = mapMetricsToTargets(response.data, options);
|
||||
var result = _.map(response.data, function(metricData, index) {
|
||||
index = metricToTargetMapping[index];
|
||||
if (index === -1) {
|
||||
index = 0;
|
||||
}
|
||||
return transformMetricData(metricData, groupByTags, options.targets[index], options);
|
||||
});
|
||||
return { data: result };
|
||||
|
Loading…
Reference in New Issue
Block a user