bpmconcept / ping-this
Requires
- php: >=7.2.0
- symfony/expression-language: ~5.0
Requires (Dev)
- geerlingguy/ping: ~1.1
- phpunit/phpunit: ~8.0
- symfony/browser-kit: ~5.0
- symfony/http-client: ~5.0
Suggests
- ext-pdo: Required by DatabasePing
- geerlingguy/ping: Required by NetworkPing
- symfony/browser-kit: Required by WebScraperPing
- symfony/http-client: Required by WebScraperPing
This package is auto-updated.
Last update: 2025-03-14 00:10:35 UTC
README
PingThis is a lightweight PHP 7.2+ tool to build simple but functional headless monitoring systems.
Example
use PingThis\Daemon; use PingThis\Alarm\PhpEmailAlarm; use PingThis\Ping\NetworkPing; use PingThis\Ping\WebScraperPing; use PingThis\Ping\DatabasePing; use PingThis\Ping\TlsCertificateExpirationPing; $daemon = new Daemon(); // Check if the host correctly answers to ping every 10 seconds $daemon->registerPing(new NetworkPing(10, 'domain.com')); // Check if a webserver responds correctly to a HTTP request every 30 seconds $daemon->registerPing(new WebScraperPing(30, 'GET', 'http://domain.com', 'response.getStatusCode() == 200')); $daemon->registerPing(new WebScraperPing(30, 'GET', 'http://domain.com', 'content.filter(".css").count()')); // Or equivalently using any PHP callable $daemon->registerPing(new WebScraperPing(30, 'GET', 'http://domain.com', function ($response, $content) { return $response->getStatus() < 400 && $content->filter('.element')->text() === "Hello"; })); // Check every day that a certificate won't expire during the next week $daemon->registerPing(new TlsCertificateExpirationPing(86400, 'domain.com', 443, TlsCertificateExpirationPing::IMPLICIT_TLS, '+7 days')); // Check if a remote SQL server is still up every 10 seconds $daemon->registerPing(new DatabasePing(10, 'mysql:host=my.sql.server', 'login', 'password')); // Otherwise send an email to alert an admin $daemon->registerAlarm(new PhpEmailAlarm('your@email.com')); $daemon->run();
Quick description
PingThis aims to provide a simple and effective way for monitoring whatever you want.
Configure a daemon with one Alarm and one or multiple Pings. The Daemon periodically
verifies each Ping and, in case of failing, triggers the Alarm. Any class could act
like an Alarm or a Ping, provided that it implements respectively the AlarmInterface
or the PingInterface
.
The different built-in Pings rely on Symfony's Expression Language Component to allow a quick and easy construction of triggering logic but can be equivalently replaced by a PHP callable.
Built-in Pings
Network
Name | Description |
---|---|
NetworkPing | Sends a standard ICMP ping and checks the ICMP response |
StreamSocketCommandPing | Sends a custom payload through a TCP/UDP/Unix socket and checks the response |
TlsCertificateExpirationPing | Initiates a TLS handshake and checks the expiration date of a certificate |
SnmpGetValuePing | Gets SNMP object value from a remote SNMP agent |
SnmpWalkValuePing | Gets SNMP object values from a remote SNMP agent |
Web
Name | Description |
---|---|
DatabasePing | Establishes a connection to a database using PDO |
DatabaseQueryPing | Executes a SQL query on a database using PDO |
HttpPing | Sends a HTTP request and checks only the returned code |
WebScraperPing | Sends a HTTP request and get back a Response, along with a Crawler instance |
Mails
Name | Description |
---|---|
ImapServerPing | Connects to a IMAP server and checks the welcome response |
SmtpServerPing | Connects to a SMTP server and checks the welcome response |
Other services
Name | Description |
---|---|
LdapSearchPing | Executes a query on a LDAP server and checks the response |
Built-in Alarms
Name | Description |
---|---|
PhpEmailAlarm | Send an email, using the PHP's mail() function |
StreamAlarm | Logs the alarms events to a given open stream (stdout or file for instance) |
LogAlarm | Specialized StreamAlarm for files that adds a lock on the log file |
ParallelAlarm | Dispatch the alert on multiple other Alarm instances |
Installation
The recommended way to install PingThis is through Composer :
composer require bpmconcept/ping-this
PingThis does not intend to provide a fully functional daemon out of the box. You are still responsible for writing a configured daemon like in the previous example. Thereafter, a real daemon can be registered to your favorite init system like systemd, upstart or supervisor.