wmon is web server monitor for one or more Linux servers.
It will give you a basic overview of your server load and may help you troubleshot problems.
Features
- monitor one or more servers from one location
- detailed load chart with zooming option
- services status and changes
- top processes at any pointed time
- disks usage
Video : http://www.screenr.com/eAgs
Docs : http://www.xrado.si/wmon/docs
Config example
return array(
'hostname' => 'myserver',
'log' => '/tmp/wmon.log',
'period' => 2016, // every 5min * 2016 => 7 days
'services' => array(
// array('name','daemon'),
array('mongodb','mongod'),
array('mysql','mysqld'),
array('apache','apache2'),
),
'partitions_exclude' => '^Filesystem|tmpfs|cdrom|mnt|none|//',
'external' => array(
// 'hostname' => 'url to external wmon',
// 'some host 2' => 'http://www.domain.org/wmon/',
// 'some host 3' => 'http://www.domain.com/wwmm/',
)
);