I tried to use the Azure Monitor REST API to read the Azure Service Bus metrics.
According to Microsoft example Get Metrics data, the parameter aggregation
is potential list of average,minimum,maximum
However, the response has only value of average
.
How can I retrieve values of average
, minimum
and maximum
in a single request?
Expected response as mentioned:
"data": [
{
"timeStamp": "2021-04-20T09:00:00Z",
"average": 7,
"minimum": 7,
"maximum": 7
}
]