You configure the Log Analytics agent to collect performance counters from several Azure virtual machines. You need to write a query to identify all records where the processor utilization exceeds 90 percent. Which Kusto Query Language (KQL) query should you run?
- Perf
| where CounterName == "% Processor Time"
| where CounterValue > 90Answer - BPerf
| where CounterName = "% Processor Time" and CounterValue > 90 - CPerformance
| where CounterName == "% Processor Time"
| where CounterValue > 90 - DPerf
| filter CounterName == "% Processor Time" and CounterValue > 90
Answer
The query that starts with the Perf table and uses the where operator with the double equals (==) comparison operator.
The correct query references the Perf table and uses the where operator with the double equals (==) comparison operator to filter performance counter records.
Step-by-Step Solution
Key Concept
Querying VM performance logs using basic KQL operators and the Perf table
Estimated Time:45s