app | ||
bootstrap | ||
config | ||
database | ||
public | ||
resources | ||
routes | ||
sql | ||
storage | ||
tests | ||
.editorconfig | ||
.env.example | ||
.gitignore | ||
.styleci.yml | ||
artisan | ||
composer.json | ||
composer.lock | ||
LICENSE | ||
monitolite.pl | ||
package-lock.json | ||
package.json | ||
phpunit.xml | ||
README.md | ||
screenshot.png | ||
webpack.mix.js |
MONITOLITE
MonitoLite is an old project I recently dug up from my archives. I developed this script years ago for my personal needs. I figured it could be useful for others so I rewrote and updated it from scratch in a modern way.
What it does
MonitoLite is a very simple monitoring tool developed in PHP powered by Lumen (by Laravel). It supports :
- ping monitoring: sends a
ping
command to the specified host. Raises an alert if the host is down - http monitoring: requests the provided URL and raises an alert if the URL returns an error. Optionally you may specify a string to search on the page using the
param
database field. It raises an alert if the specified text could not be found on the page.
In case of an alert, the script sends an email notifications to the specified contacts (one or many). The script also sends a recovery email notification when the alert is over.
It uses a SQL backend for handling the tasks and the status of the tasks. Tested on MySQL only but should support other SQL-based DBMS.
It comes with a very straightforward dashboard written in PHP. This is optional, the monitoring script runs as standalone. Caution: the backend is not password-protected. You should make sure you add your own security layer via IP filtering or basic authentication.
Screenshot
Requirements
- PHP 7+ with cURL,
exec
command allowed, MySQL extension via PDO - a MTA: Postfix, or an external SMTP ...
- a webserver (optional): Apache, Nginx, ...
- a Database server: MySQL, other? (untested)
- access to CRON tasks
Installation
- clone this repo
- install PHP composer dependencies:
cd ./web && composer install
- create a Database and import the schema from
sql/create.sql
- create your own
.env
file:cp .env.example .env
and adapt it to your needs - create a webserver vhost with document root to the
public
directory - add tasks and contacts into the database (no GUI for CRUD yet)
- run the script:
cd /var/www/<your-path> && php artisan monitolite:monitoring:run
- check the output of the command for results.
- if everything works, you may create a CRON
* * * * * cd /var/www/<your-path> && php artisan monitolite:monitoring:run > /dev/null
Settings
- APP_NAME=Monitolite
- APP_ENV=production
- APP_KEY=
- APP_DEBUG=false
- APP_URL=http://localhost
- APP_TIMEZONE=UTC
- DB_CONNECTION=mysql
- DB_HOST=127.0.0.1
- DB_PORT=3306
- DB_DATABASE=homestead
- DB_USERNAME=homestead
- DB_PASSWORD=secret
- SMTP_HOST=localhost
- DMTP_USER=
- SMTP_PASSWORD=
- SMTP_PORT=25
- SMTP_SSL=1
- MAIL_FROM=axel@monitolite.fr
- NB_TRIES=3
- ARCHIVE_DAYS=10
TODO
- Make CRUD possible from the backend for adding tasks and contacts
- Multithreading
- SMS Notifications
- Protected backend with authentication
- Create an installation script
- Raise alert when tasks are not run at the correct frequency (CRON down or other reason)
- Set a notification capping limit to prevent many notifications to be sent in case of an up-and-down host
- Add a notification history log
- Keep track of tasks response time
- Daemonize the script (instead of CRONs)