Query Details

Monitor CPU Performance And Health

Query

// Use Case: Query to find the current clock speed, maximum clock speed, and status of the CPU. This can help in understanding if the CPU is being throttled or if it's operating normally.
Cpu
| project CurrentClockSpeed, MaxClockSpeed, CpuStatus

Explanation

This query is designed to retrieve information about the CPU's performance. It specifically looks at three key pieces of data:

  1. CurrentClockSpeed: The current operating speed of the CPU.
  2. MaxClockSpeed: The maximum speed the CPU is capable of reaching.
  3. CpuStatus: The current status of the CPU, which can indicate if it's functioning normally or experiencing issues like throttling.

By examining these details, you can determine if the CPU is running at its expected performance level or if there are any potential problems affecting its speed.

Details

Ugur Koc profile picture

Ugur Koc

Released: December 13, 2024

Tables

Cpu

Keywords

Cpu

Operators

project

Actions

GitHub