-1

I have a Solaris server with very high vmstat sy time. What tools can I use to identify which process is causing the high system cpu usage?

kthr      memory            page            disk          faults      cpu
 r b w   swap  free  re  mf pi po fr de sr m1 m1 m1 m2   in   sy   cs us sy id
 0 0 0 21776984 15540976 355 1968 43 15 8 0 0 1 1 1  1 4206 14471 7300 7  2 91
MDMarra
  • 100,734
  • 32
  • 197
  • 329
user99959
  • 1
  • 1

1 Answers1

1

ps -aefl and look at the 'C' column, the higher the C value the more CPU it is using at the time you did the ps.

top is also a pretty traditional method.

mdpc
  • 11,856
  • 28
  • 53
  • 67