Difference between revisions of "Monitorix"
m (→Viewing Monitorix Data) |
(fixed header) |
||
Line 1: | Line 1: | ||
− | + | {{Related articles start}} | |
− | {{ | + | {{Related|Anything-sync-daemon}} |
− | {{ | + | {{Related|lm_sensors}} |
− | + | {{Related|hddtemp}} | |
− | + | {{Related articles end}} | |
− | {{ | ||
− | {{ | ||
− | {{ | ||
[http://www.monitorix.org/ Monitorix] is an open source, lightweight system monitoring tool designed to monitor as many services and system resources as possible. It has been created to be used under production '''UNIX/Linux servers''', but due to its simplicity and small size many use it on embedded devices as well. | [http://www.monitorix.org/ Monitorix] is an open source, lightweight system monitoring tool designed to monitor as many services and system resources as possible. It has been created to be used under production '''UNIX/Linux servers''', but due to its simplicity and small size many use it on embedded devices as well. |
Revision as of 20:52, 16 December 2013
Monitorix is an open source, lightweight system monitoring tool designed to monitor as many services and system resources as possible. It has been created to be used under production UNIX/Linux servers, but due to its simplicity and small size many use it on embedded devices as well.
Contents
Installation of Monitorix
Visit the AUR and grab the tarball for the monitorixAUR package and build/install it.
Configuration of Monitorix
Before starting the monitorix daemon, be sure to adjust the /etc/monitorix.conf
to your liking. For a complete list of options and features, see the [official website] or the included man page for monitor.conf.
Most if not all of the user settings are self explanatory based on the commented text within the conf file itself.
Start Monitorix
Start Monitorix with the included service file like any other systemd service:
# systemctl start monitorix
Viewing Monitorix Data
With the release of version 3.0.0, Monitorix now comes with a light, built in webserver thanks to the dependency on perl-http-server-simple. This is a configuration option in /etc/monitorix.conf
which users may elect to either use or not.
To view system stats, using the perl-http-server, simply point a browser to [http://localhost:8080/monitorix] to see the data.
Configure an External Webserver
Lighttpd
Lighttpd is another option.
By default, cgi support is not enabled in lighttpd. To enable it and to assign perl to process .cgi files, add the following two lines to /etc/lighttpd/lighttpd.conf
:
server.modules = ( "mod_cgi" ) cgi.assign = ( ".cgi" => "/usr/bin/perl" )
Apache
Apache is yet another option.
Using tmpfs to Store RRD Databases
Anything-sync-daemonAUR is a package which provides a pseudo-daemon that makes use of tmpfs to store RRD Databases for Monitorix. Doing so will greatly reduce hdd reads/writes.