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 > 90Cevap - BPerf
| where CounterName = "% Processor Time" and CounterValue > 90 - CPerformance
| where CounterName == "% Processor Time"
| where CounterValue > 90 - DPerf
| filter CounterName == "% Processor Time" and CounterValue > 90
Cevap
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.
Adım Adım Çözüm
Anahtar Kavram
Querying VM performance logs using basic KQL operators and the Perf table
Tahmini Süre:45s