This is the monitor package for Orchid CMS.
- Board temperature
- Network status
- Uptime
- CPU Load
- Memory allocation
- Available storage
Pull in the package through Composer.
Run composer require orchidcommunity/monitor
to get the latest stable version of the package.
$monitor = new Monitor();
// uname,webserver,phpVersion,cpu
$monitor->info();
// temperature,uptime
$monitor->hardware();
// oneMin,fiveMins,fifteenMins
$monitor->loadAverage();
// total,used,buffers,cache
$monitor->memory();
// down,up
$monitor->network();
// array
$monitor->storage();
The MIT License (MIT). Please see License File for more information.