You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The below query throws an error that it failed to resolve wait_type_s. I don't see it in the list of returned fields.
// Wait stats
// Wait stats over the last hour, by Logical Server and Database.
AzureDiagnostics
| where ResourceProvider == "MICROSOFT.SQL"
| where TimeGenerated >= ago(60min)
| parse _ResourceId with * "/microsoft.sql/servers/" LogicalServerName "/databases/" DatabaseName
| summarize Total_count_60mins = sum(delta_waiting_tasks_count_d) by LogicalServerName, DatabaseName, wait_type_s
The text was updated successfully, but these errors were encountered:
The below query throws an error that it failed to resolve wait_type_s. I don't see it in the list of returned fields.
The text was updated successfully, but these errors were encountered: