mirror of https://github.com/grafana/grafana
CloudMonitoring: Fix crash when inspecting data for MQL queries (#63747)
CloudMonitoring: Fix missing Field name This happened for MQL queries that used an [aggregate function][1], e.g. `sum`. [1]: https://cloud.google.com/monitoring/mql/reference#aggr-function-grouppull/63754/head^2
parent
c8db771939
commit
3672e44c1c
@ -0,0 +1,39 @@ |
||||
{ |
||||
"timeSeriesDescriptor": { |
||||
"pointDescriptors": [ |
||||
{ |
||||
"key": "value_utilization_sum", |
||||
"valueType": "DOUBLE", |
||||
"metricKind": "GAUGE" |
||||
} |
||||
] |
||||
}, |
||||
"timeSeriesData": [ |
||||
{ |
||||
"pointData": [ |
||||
{ |
||||
"values": [ |
||||
{ |
||||
"int64Value": "0" |
||||
} |
||||
], |
||||
"timeInterval": { |
||||
"startTime": "2020-05-18T09:47:00Z", |
||||
"endTime": "2020-05-18T09:48:00Z" |
||||
} |
||||
}, |
||||
{ |
||||
"values": [ |
||||
{ |
||||
"int64Value": "0" |
||||
} |
||||
], |
||||
"timeInterval": { |
||||
"startTime": "2020-05-18T09:46:00Z", |
||||
"endTime": "2020-05-18T09:47:00Z" |
||||
} |
||||
} |
||||
] |
||||
} |
||||
] |
||||
} |
Loading…
Reference in new issue