From Fedora Project Wiki
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{autolang|base=yes}}
<!--{{header|munin}}-->
Munin is an easy to use system and network monitoring tool that uses RRDTool to generate useful visualizations of resource usage.
<!--{{autolang|base=yes}}-->
 
'''Munin''' is an easy to use system and network monitoring tool that uses RRDTool to generate useful visualizations of resource usage. Munin is implemented in a master and slave node structure where the master node gathers data from the slave node(s) and produces HTML output which will be placed in the directory accessible and served via a web server in an accessible web based interface for administrator to view at any time with a web browser.


== Communicate ==
== Communicate ==
Line 8: Line 8:
*[mailto:munin-users-request@lists.sourceforge.net Subscribe] to the mailing list
*[mailto:munin-users-request@lists.sourceforge.net Subscribe] to the mailing list
*[http://sourceforge.net/mailarchive/forum.php?forum_name=munin-users Archive] for the mailing list
*[http://sourceforge.net/mailarchive/forum.php?forum_name=munin-users Archive] for the mailing list
== Getting started ==
Munin is split into two components server (master) and an client (node).which collects the data and forwards it to the master node. The munin-node is installed as a dependency of the munin package
=== Installation ===
==== Server ====
<pre>
yum -y install munin
</pre>
==== Client ====
<pre>
yum -y install munin-node
</pre>
=== Configuration ===
==== Server ====
==== Client ====


== Getting the Source ==
== Getting the Source ==
Line 15: Line 36:
Note that several related packages will be installed as well.  After the git source code management tool has been installed, then you use anonymous git access to the Munin repository.
Note that several related packages will be installed as well.  After the git source code management tool has been installed, then you use anonymous git access to the Munin repository.
<pre>
<pre>
git clone git://git.kernel.org/pub/scm/boot/dracut/dracut.git
git clone git://github.com/munin-monitoring/munin.git
</pre>
</pre>
Once you've committed changes locally, you can push them with {{command|git push}}.
Once you've committed changes locally, you can push them with {{command|git push}}.


If you would just like to browse the munin git repository via the web, then you can use [http://git.kernel.org/?p=boot/dracut/dracut.git munin gitweb].
If you would just like to browse the munin git repository via the web, then you can use [https://github.com/munin-monitoring/munin munin gitweb].


== Reporting Problems ==
== Reporting Problems ==


Before [https://bugzilla.redhat.com/enter_bug.cgi?product=Fedora&component=munin  filing a bug], please read up on [[Munin/Debugging|debugging]], which will tell you how to fill out useful bug reports that will help us quickly solve your problem. Also take a look at [http://bugz.fedoraproject.org/dracut Dracut bugs] or try searching [http://bugzilla.redhat.com Bugzilla]for other reports about your problem, as some bugs are often filed by several people.
Before [https://bugzilla.redhat.com/enter_bug.cgi?product=Fedora&component=munin  filing a bug], please read up on [[Munin/Debugging|debugging]], which will tell you how to fill out useful bug reports that will help us quickly solve your problem. Also take a look at [http://bugz.fedoraproject.org/munin Munin bugs] or try searching [http://bugzilla.redhat.com Bugzilla]for other reports about your problem, as some bugs are often filed by several people.

Latest revision as of 13:43, 10 August 2012

Munin is an easy to use system and network monitoring tool that uses RRDTool to generate useful visualizations of resource usage. Munin is implemented in a master and slave node structure where the master node gathers data from the slave node(s) and produces HTML output which will be placed in the directory accessible and served via a web server in an accessible web based interface for administrator to view at any time with a web browser.

Communicate

Getting started

Munin is split into two components server (master) and an client (node).which collects the data and forwards it to the master node. The munin-node is installed as a dependency of the munin package

Installation

Server

yum -y install munin

Client

yum -y install munin-node

Configuration

Server

Client

Getting the Source

The primary methods of distributing the munin source are source RPMs in the Fedora development tree and git. To access the current source code in in non-rpm format, you'll need to install git: yum install git.

Note that several related packages will be installed as well. After the git source code management tool has been installed, then you use anonymous git access to the Munin repository.

git clone git://github.com/munin-monitoring/munin.git

Once you've committed changes locally, you can push them with git push.

If you would just like to browse the munin git repository via the web, then you can use munin gitweb.

Reporting Problems

Before filing a bug, please read up on debugging, which will tell you how to fill out useful bug reports that will help us quickly solve your problem. Also take a look at Munin bugs or try searching Bugzillafor other reports about your problem, as some bugs are often filed by several people.