Monitoring plugin to check ESPHome devices status
Go to file
Benjamin Renard bf0a560566
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
Configure pre-commit to run all tests on commit and use it for CI tests
2023-01-19 14:59:57 +01:00
debian Fix debian package dependency 2022-12-03 16:20:51 +01:00
.gitignore First version 2022-10-26 12:20:43 +02:00
.pre-commit-config.yaml Configure pre-commit to run all tests on commit and use it for CI tests 2023-01-19 14:59:57 +01:00
.woodpecker.yml Configure pre-commit to run all tests on commit and use it for CI tests 2023-01-19 14:59:57 +01:00
build.sh Configure CI to run test, build package and publish release 2022-12-03 15:48:47 +01:00
check_esphome_devices Configure pre-commit to run all tests on commit and use it for CI tests 2023-01-19 14:59:57 +01:00
README.md Add -x/--exclude parameter 2022-12-03 15:14:19 +01:00

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] [-x EXCLUDE]

optional arguments:
  -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 retreive device status (default: 4)
  -D RETRY_DELAY, --delay RETRY_DELAY
                        Delay in second between two retry to retreive device status (default: 1s)
  -x EXCLUDE, --exclude EXCLUDE
                        Regex exclude pattern(

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.