insenseanalytics/nova-server-monitor

A Laravel Nova tool for Spatie's Server Monitor library.
55,935 65
Install
composer require insenseanalytics/nova-server-monitor
Latest Version:v0.1
PHP:>=7.1.0
License:MIT
Last Updated:Oct 7, 2020
Links: GitHub  ·  Packagist
Maintainer: paras-malhotra

A Laravel Nova Tool for Spatie's Server Monitor Library

Packagist License Latest Stable Version Total Downloads

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.

Quick Installation

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.

Contributing

We are open to PRs as long as they're backed by tests and a small description of the feature added / problem solved.

License

The MIT License (MIT). Please see License File for more information.

Related Packages

davidpiesse/nova-maintenance-mode

Enable and disable Maintenance Mode from within Laravel Nova

64,047 33
unm/laravel4-opencloud

A laravel 4.1 service provider package that wraps the Rackspace/Openstack PHP SD...

4 7
kreitje/nova-horizon-stats

A Laravel Nova card.

177,792 28
naoray/nova-json

Nova json field to spread a json column throughout multiple fields.

520,258 37
spatie/nova-tail-tool

A Laravel Nova tool to display the application log.

129,222 119