icinga2-checks/README.md

19 lines
677 B
Markdown
Raw Normal View History

2023-04-21 23:54:15 -06:00
# icinga2-checks
2023-11-08 18:39:49 -07:00
My custom Icinga2 checks.
2023-11-26 23:15:27 -07:00
Useful: https://nagios-plugins.org/doc/guidelines.html#AEN200
2024-01-30 11:13:31 -07:00
https://icinga.com/docs/icinga-2/latest/doc/05-service-monitoring/#performance-data-metrics
2024-02-28 17:14:45 -07:00
`requirements-everybody.txt`: pip requirements for all Python 3 versions and Linux and BSD hosts. Should be easy to install on all hosts.
2024-01-30 11:13:31 -07:00
2024-02-28 17:14:45 -07:00
`requirements-difficult.txt`: pip requirements that are easy to install on normal Debian hosts but complicated when there are wheels available.
## Fix `dbus` Issues
```shell
ln -s /usr/lib/python3/dist-packages/_dbus_* ./venv/lib/python3.*/site-packages
ln -s /usr/lib/python3/dist-packages/dbus ./venv/lib/python3.*/site-packages
```