Googz En
Googz En

Reputation: 41

How to show the totall amount of process ,main memory, virtual memory usage in SYSTEMTAP?

I wanna write a script that monitors one (selected) item component for the following operating systems:

and I came up with this idea how to show it:

   process | main memory | virtual memory | input/output |  network
  % usage  |  % usage    |     % usage    |     ???      | data send/recived

I don't know how to show % usage of CPU, main memory, and virtual memory.
Also I don't know what to manage in input/output.

Upvotes: 0

Views: 194

Answers (1)

fche
fche

Reputation: 2790

Systemtap is better suited to monitoring events rather than levels like some of those. Consider using something like PCP (http://oss.sgi.com/projects/pcp) for simple periodic level monitoring.

Upvotes: 2

Related Questions