Query Details

Detect CPU Overclocking

Query

Use Case: Compare the current clock speed against the maximum clock speed to identify if the CPU is being overclocked.

Query:

Cpu
| project ProcessorId, CurrentClockSpeed, MaxClockSpeed, Overclocked = iif(CurrentClockSpeed > MaxClockSpeed, 'Yes', 'No')

Explanation

The query compares the current clock speed of a CPU with its maximum clock speed to determine if the CPU is being overclocked. It projects the ProcessorId, CurrentClockSpeed, MaxClockSpeed, and a column called Overclocked which indicates whether the CPU is overclocked or not.

Details

Ugur Koc profile picture

Ugur Koc

Released: February 4, 2024

Tables

Cpu

Keywords

Cpu,ProcessorId,CurrentClockSpeed,MaxClockSpeed,Overclocked

Operators

|projectiif(,)>'Yes''No'

Actions