mirror of
https://github.com/grafana/grafana.git
synced 2025-09-21 10:02:59 +08:00
fix(OpenTSDB): fixed issue with OpenTSDB and query to result matching, Fixes #2315
This commit is contained in:
@ -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 };
|
||||
|
Reference in New Issue
Block a user