DataSource/CloudWatch: Adds metadata to grouped CW Logs dataframe (#27454)

This commit is contained in:
kay delaney
2020-09-09 08:38:53 +01:00
committed by GitHub
parent 6b0f56b726
commit 22d6cfc358

View File

@@ -175,6 +175,7 @@ func groupResults(results *data.Frame, groupingFieldNames []string) ([]*data.Fra
if _, exists := groupedDataFrames[groupKey]; !exists {
newFrame := results.EmptyCopy()
newFrame.Name = groupKey
newFrame.Meta = results.Meta
groupedDataFrames[groupKey] = newFrame
}