1

I want to perform monitoring of /proc/user_beancounters to see when the system hits the limits and what process is to blame.

Does anybody know tools for this issue?

glaz666
  • 8,707
  • 19
  • 56
  • 75

1 Answers1

2

You can use Nagios for monitoring this file. It is not supported out-of-the-box, but this plugin adds support for /proc/user_beancounters.

If Nagios is too much bloat for you, you might want to take a look at these Ruby scripts which sporadically check the file for any changes and in the case the values increase, they send an e-mail: 1, 2

If you only want to have the values presented in a human-readable format, you can try the shell scripts provided here.

user206268
  • 908
  • 2
  • 8
  • 23
  • thanks. but for my vps it will be too big overhead, I mean installing nagios. I looking at munin now. – glaz666 Mar 31 '10 at 12:04
  • Maybe Cacti is also a choice. Here a script that parses the /proc/user_beancounters: http://code.google.com/p/mysql-cacti-templates/issues/detail?id=95 – user206268 Mar 31 '10 at 12:45