John,
I assume you mean from the CPU REPORT screen in glance?
It would be interesting to see the amount of CPU that nice'd processes are using. The following command should show processes with non-default nice values (default nice value nis 20)
UNIX95= ps -eo comm,nice,pcpu | awk ' $2!=20 ' | sed 1d | sort -rn -k 3,3
You can ignore processes with a nice value less than 20 (theere should only be a few system processes with this value) - look for those with nice values over 20... the list is also sorted by CPU utilisation as well...
HTH
Duncan
I am an HPE Employee