Hello,
I need help in understanding why perfmon is reporting Processor %Idle Time greater than 100.
Below is sample data points reported from one of our machine.
SELECT Percent_Idle_Time, Percent_Processor_Time, Percent_User_Time, Percent_Interrupt_Time, Percent_Privileged_Time, Percent_DPC_Time FROM "two_months"."win_cpu" WHERE ("host" = 'AMZGCAPP7') AND time >= 1569890400000ms and time <= 1569890520000ms AND Percent_Idle_Time > 100
name: win_cpu
time Percent_Idle_Time Percent_Processor_Time Percent_User_Time Percent_Interrupt_Time Percent_Privileged_Time Percent_DPC_Time
---- ----------------- ---------------------- ----------------- ---------------------- ----------------------- ----------------
2019-10-01T00:41:15Z 140.2029571533203 0 0 0 0
2019-10-01T00:41:15Z 122.74894714355469 0 0 17.539499282836914 0
2019-10-01T00:41:15Z 140.2930908203125 0 0 0 0
2019-10-01T00:41:15Z 140.29782104492188 0 0 0 0
A simple google search didn’t give any explanation of Idle Time counter. Can anyone please guide me to right place.
Also which is the correct counter to see CPU utilization? Is it Processor\% Idle Time
or
Processor\% Processor Time