50 lines
2.1 KiB
Markdown
50 lines
2.1 KiB
Markdown
# Monitoring plugin to check ESPHome devices status
|
|
|
|
This Icinga/Nagios check plugin permit to check ESPHome devices status using the ESPHome Dashboard API :
|
|
|
|
- check if device is reachable
|
|
- check if device upgrade is available
|
|
|
|
## Installation
|
|
|
|
```
|
|
apt install git
|
|
git clone https://gitea.zionetrix.net/bn8/check_esphome_devices.git /usr/local/src/check_esphome_devices
|
|
mkdir -p /usr/local/lib/nagios/plugins
|
|
ln -s /usr/local/src/check_esphome_devices/check_esphome_devices /usr/local/lib/nagios/plugins/
|
|
echo "command[check_esphome_devices]=/usr/local/lib/nagios/plugins/check_esphome_devices" > /etc/nagios/nrpe.d/esphome.cfg
|
|
service nagios-nrpe-server reload
|
|
```
|
|
|
|
## Usage
|
|
|
|
```
|
|
usage: check_esphome_devices [-h] [-d] [-H HOST] [-r RETRY_COUNT] [-D RETRY_DELAY]
|
|
[-t TIMEOUT] [-x EXCLUDE]
|
|
|
|
options:
|
|
-h, --help show this help message and exit
|
|
-d, --debug
|
|
-H HOST, --host HOST ESPHome dashboard URL (default: http://127.0.0.1:6052)
|
|
-r RETRY_COUNT, --retry RETRY_COUNT
|
|
Number of retry to retrieve device status (default: 4)
|
|
-D RETRY_DELAY, --delay RETRY_DELAY
|
|
Delay in second between two retry to retrieve device status
|
|
(default: 1s)
|
|
-t TIMEOUT, --timeout TIMEOUT
|
|
Timeout in second on API requests (default: 10s)
|
|
-x EXCLUDE, --exclude EXCLUDE
|
|
Regex exclude pattern(s)
|
|
```
|
|
|
|
## Copyright
|
|
|
|
Copyright (c) 2022 Benjamin Renard <brenard@zionetrix.net>
|
|
|
|
## License
|
|
|
|
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|