Sample files shared at the architect day(s) 19th-20th of November
Here are some sample KQL queries used in demos.
Note: Perf will be moved to InsightsMetrics
soon.
Perf
| where ObjectName == "Process" and
CounterName == "% Processor Time" and
Computer == "vmname" and
InstanceName == "CalcService"Perf
| where TimeGenerated >= ago(3h) and
ObjectName == "Process" and
CounterName == "% Processor Time" and
Computer == "vmname" and
InstanceName == "CalcService"
| summarize max(CounterValue) by bin(TimeGenerated, 1m), Computer
| render barchart kind=unstackedAzureMetrics
| where ResourceGroup =~ "db-prod-rg" and
Resource =~ "db" and
MetricName =~ "dtu_consumption_percent"customEvents
| where timestamp >= ago(30m) and
appName =~ "CalcService" and
name =~ "Calculation execution completed"
| extend Value = todouble(customMeasurements.Level)
| project timestamp, Value
| summarize max(Value) by bin(timestamp, 1m)
| render timechart