I'm running a process which is latency sensitive and running it on a shared virtual box for costs reasons.

How can I analyze how busy (utilization) on this box ? In particular, I'm concerned about large context switching times between my processses and other users processes which will affect the response time of my application.

The top command only shows my processes...

Thanks

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You can use the following command to count the number of context switches since boot time.

cat /proc/stat |grep ctxt

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.