mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
CloudWatch/Logs: Fix panic on multiple aggregations queries (#24683)
This commit is contained in:
parent
141c21c906
commit
c60765a178
@ -8,14 +8,13 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func logsResultsToDataframes(response *cloudwatchlogs.GetQueryResultsOutput) (*data.Frame, error) {
|
func logsResultsToDataframes(response *cloudwatchlogs.GetQueryResultsOutput) (*data.Frame, error) {
|
||||||
rowCount := len(response.Results)
|
|
||||||
fieldValues := make(map[string]interface{})
|
fieldValues := make(map[string]interface{})
|
||||||
|
|
||||||
// Maintaining a list of field names in the order returned from CloudWatch
|
// Maintaining a list of field names in the order returned from CloudWatch
|
||||||
// as just iterating over fieldValues would not give a consistent order
|
// as just iterating over fieldValues would not give a consistent order
|
||||||
fieldNames := make([]*string, 0)
|
fieldNames := make([]*string, 0)
|
||||||
|
|
||||||
for i, row := range response.Results {
|
for _, row := range response.Results {
|
||||||
for _, resultField := range row {
|
for _, resultField := range row {
|
||||||
// Strip @ptr field from results as it's not needed
|
// Strip @ptr field from results as it's not needed
|
||||||
if *resultField.Field == "@ptr" {
|
if *resultField.Field == "@ptr" {
|
||||||
@ -27,9 +26,9 @@ func logsResultsToDataframes(response *cloudwatchlogs.GetQueryResultsOutput) (*d
|
|||||||
|
|
||||||
// Check if field is time field
|
// Check if field is time field
|
||||||
if _, err := time.Parse(cloudWatchTSFormat, *resultField.Value); err == nil {
|
if _, err := time.Parse(cloudWatchTSFormat, *resultField.Value); err == nil {
|
||||||
fieldValues[*resultField.Field] = make([]*time.Time, rowCount)
|
fieldValues[*resultField.Field] = make([]*time.Time, 0)
|
||||||
} else {
|
} else {
|
||||||
fieldValues[*resultField.Field] = make([]*string, rowCount)
|
fieldValues[*resultField.Field] = make([]*string, 0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -39,9 +38,9 @@ func logsResultsToDataframes(response *cloudwatchlogs.GetQueryResultsOutput) (*d
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
timeField[i] = &parsedTime
|
fieldValues[*resultField.Field] = append(timeField, &parsedTime)
|
||||||
} else {
|
} else {
|
||||||
fieldValues[*resultField.Field].([]*string)[i] = resultField.Value
|
fieldValues[*resultField.Field] = append(fieldValues[*resultField.Field].([]*string), resultField.Value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -78,6 +78,8 @@ func TestLogsResultsToDataframes(t *testing.T) {
|
|||||||
Value: aws.String("fakelog"),
|
Value: aws.String("fakelog"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
// Sometimes cloudwatch returns empty row
|
||||||
|
{},
|
||||||
{
|
{
|
||||||
&cloudwatchlogs.ResultField{
|
&cloudwatchlogs.ResultField{
|
||||||
Field: aws.String("@ptr"),
|
Field: aws.String("@ptr"),
|
||||||
|
Loading…
Reference in New Issue
Block a user