:
This plugin uses mysql to fetch the performance metrics from a Bacula server.
To install it:
- Verify that your system has mysql installed: $ mysql -V
- Download the file “bacula_plugin”.
- Copy it to your agent plugins directory. F.ex. on my system in “/etc/pandora/plugins”.
- Make it executable: $ chmod +x /etc/pandora/plugins/bacula_plugin
To use it you need a mysql user, for that I create a user with only select privileges on the bacula catalog database:
mysql> GRANT SELECT ON (bacula_catalog).* to (user)@localhost identified by '(password)';
NOTE: Maybe less privileges are needed, but NEVER user the mysql root account.
Then just call it from the config file of your agent with the following line:
"module_plugin bacula_plugin (user) (password) (bacula_catalog)"
For more plugin options or change warning and critical levels see its code.
Module data
Depends on: mysql
Files:
(Visited 578 times, 1 visits today)