monitoring-plugins/README.md

21 lines
860 B
Markdown
Raw Normal View History

2021-01-07 15:34:16 +01:00
# monitoring-plugins
Monitoring plugins for Nagios, Icinga and all other NRPE compatible monitoring solutions
#### check_reboot-required
Plugin for NRPE (Nagios Remote Plugin Executor) for Debian/Ubuntu and Red Hat/CentOS
to check if a reboot is required and also list packages that requires reboot
2021-06-11 09:17:24 +02:00
#### stat_net.pl
Plugin for checking network errors and statictics
2021-10-06 15:58:58 +02:00
#### restart_service
Event command to restart a service. Restaring a service will require sudo privileges on systemctl / service binaries. Add the following to `/etc/sudoers` on the client machine:
```
icinga ALL=(ALL) NOPASSWD: /bin/systemctl restart *
icinga ALL=(ALL) NOPASSWD: /usr/bin/systemctl restart *
icinga ALL=(ALL) NOPASSWD: /sbin/service * restart
icinga ALL=(ALL) NOPASSWD: /usr/sbin/service * restart
```
If your Icinga2 client runs as a different user adjust as necessary.