A Laravel Nova tool for Spatie's Server Monitor library.
insenseanalytics/nova-server-monitor is a Laravel package for a laravel nova tool for spatie's server monitor library..
It currently has 64 GitHub stars and 52.799 downloads on Packagist (latest version v0.1).
Install it with composer require insenseanalytics/nova-server-monitor.
Discover more Laravel packages by insenseanalytics
or browse all Laravel packages to compare alternatives.
Last updated
This Nova tool allows you to monitor server health checks such as database, redis, diskspace, elasticsearch, etc. It depends on the Spatie Server Monitor library.
You can install this tool into a Laravel app that uses Nova via composer:
composer require insenseanalytics/nova-server-monitor
Next, if you do not have package discovery enabled, you need to register the provider in the config/app.php file:
'providers' => [
...,
Insenseanalytics\NovaServerMonitor\ToolServiceProvider::class,
]
Finally, register the tool in your NovaServiceProvider.php file:
public function tools()
{
\Insenseanalytics\NovaServerMonitor\NovaServerMonitor::make()
->onConnection('server_monitor')->hosts(['example1.com'])
->checks(['mysql']),
}
Specify your database connection using the onConnection method. Typically the server that monitors your app's checks would be a separate app, and we would make a separate connection in config/database.php that connects to the monitoring server's database. If you want to display all checks and hosts, you do not need to call the hosts and checks methods.
We are open to PRs as long as they're backed by tests and a small description of the feature added / problem solved.
The MIT License (MIT). Please see License File for more information.