Does vmstat degrades performance of the unix server?

link|improve this question
feedback

migrated from stackoverflow.com Jan 27 at 22:27

This question came from our site for professional and enthusiast programmers.

1 Answer

Clearly, it takes some resources to run vmstat. However, the amount of resources it needs is tiny, so the performance impact will be negligible (probably not even measurable).

If we take Linux as an example, all vmstat does is read a couple of small pseudo-files in /proc, format their contents and print out the result.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown