3

Is there any other FreeBSD command besides "top" which can be used to get the following values?

CPU: % user, % nice, % system, % interrupt, % idle

My problem to be specific is that these values do not get updated by just "top" but require "top -d 2" and this command does not work in the current framework I'm working with.

1 Answers1

1

iostat(8) shows CPU statistics:

   us      % of cpu time in user mode
   ni      % of cpu time in user mode running niced processes
   sy      % of cpu time in system mode
   in      % of cpu time in interrupt mode
   id      % of cpu time in idle mode
jlliagre
  • 13,899
  • 4
  • 31
  • 48