views:

1102

answers:

3

Windows has a Performance Counters infrastructure. The OS provides some common counters, and I can go add my own. What is the corresponding concept in Linux/Unix?

+4  A: 

Take a look at:

Brandon E Taylor
A: 

There is also PAPI and PerfSuite.

Roman Plášil
A: 

Several applications exist which periodically check system performance.

  • iostat, vmstat, and netstat - Run these commands once to get a snapshot of activity.
  • sysstat - This runs periodically and maintains a history of statistics such as the above.
  • Munin - As sysstat, but with pretty web graphs.
Josh Kelley