-
Notifications
You must be signed in to change notification settings - Fork 4
/
write_response_duration.kql
8 lines (7 loc) · 1.12 KB
/
write_response_duration.kql
1
2
3
4
5
6
7
8
// Displays the minimum, maximum, average, and percentile duration data over a period of time for write requests. Supply a start and end time for the query range and update the cluster uri with the appropriate values from your terraform deployment.
let startTime = todatetime(<QUERY_START_TIME>);
let endTime = todatetime(<QUERY_END_TIME>);
cluster("https://ade.applicationinsights.io/subscriptions/<SUBSCRIPTION_ID>/resourcegroups/<BASE_NAME>-rg/providers/microsoft.insights/components/<BASE_NAME><REGION>").database("<BASE_NAME><REGION>").requests
| where timestamp between (startTime .. endTime)
| where parse_json(customDimensions)["HttpMethod"] == "POST"
| summarize AvgDurationMs = round(avg(toreal(duration)), 4), MinDurationMs = round(min(toreal(duration)), 4), 25thPercentileDurationMs = round(todecimal(percentile(toreal(duration), 25)), 4), 50thPercentileDurationMs = round(todecimal(percentile(toreal(duration), 50)), 4), 75thPercentileDurationMs = round(todecimal(percentile(toreal(duration), 75)), 4), 90thPercentileDurationMs = round(todecimal(percentile(toreal(duration), 90)), 4), MaxDurationMs = round(max(toreal(duration)), 4)