I am programming a client to collect performance data from windows machines. This data will be send to a central server storing the information and displaying it graphically.
I am using the windows performance API to collect the system data. But now I have a little problem. The server needs to know how the data I send is related to each other and I can't find anything useful on the web about CPU counters. My question is how these counters stand in relation to each other.
Example
% processor time + % idle time = 100%
This is not too hard to find out but I cannot find any information on the other percentage values like interrupt time, privileged time or user time. How stand these in relation to the processor time for example. The ultimate goal is to add all these values and get 100% at the end.
Thank you in advance and sorry for my english, I hope my question is clear.