Some users may prefer to view CPU usage by PEs in a normalized fashion. Conceptually, this restates each of the above statistics in terms of percentage of total CPU capacity of the node.
The following SQL example shows how to perform this normalization for the Total Busy % statistic.
SEL TheDate, TheTime,Vproc,NodeID, (PETotalUserExec+PETotalUserServ) /Secs/NCPUs (FORMAT ‘zz9%’,TITLE ‘Total// Busy// %’) FROM ResCpuUsageByPEView WHERE TheDate = CURRENT_DATE AND TheTime>080000 ORDER BY 1,2,3;