1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
.. _munin-node:
.. program:: munin-node
============
munin-node
============
DESCRIPTION
===========
munin-node is a daemon for reporting statistics on system performance.
By default, it is started at boot time, listens on port 4949/TCP,
accepts connections from the :ref:`munin master <master-index>`, and
runs :ref:`munin plugins <plugin-index>` on demand.
OPTIONS
=======
.. option:: --config <configfile>
Use <file> as configuration file. [/etc/munin/munin-node.conf]
.. option:: --paranoia
Only run plugins owned by root. Check permissions as well. Can be
negated with --noparanoia [--noparanoia]
.. option:: --help
View this help message.
.. option:: --debug
View debug messages.
.. note::
This can be very verbose.
.. option:: --pidebug
Plugin debug. Sets the environment variable :envvar:`MUNIN_DEBUG`
to 1 so that plugins may enable debugging.
CONFIGURATION
=============
The configuration file is :ref:`munin-node.conf`.
.. index::
pair: example; munin-node.conf
FILES
=====
:ref:`/etc/munin/munin-node.conf <munin-node.conf>`
:ref:`/etc/munin/plugins/* <plugindir>`
:ref:`/etc/munin/plugin-conf.d/* <pluginconfdir>`
:ref:`/var/run/munin/munin-node.pid <rundir>`
:ref:`/var/log/munin/munin-node.log <logdir>`
SEE ALSO
========
:ref:`munin-node.conf`
Example configuration
=====================
::
# /etc/munin/munin-node.conf - config-file for munin-node
#
host_name random.example.org
log_level 4
log_file /var/log/munin/munin-node.log
pid_file /var/run/munin/munin-node.pid
background 1
setsid 1
# Which port to bind to;
host [::]
port 4949
user root
group root
# Regexps for files to ignore
ignore_file ~$
ignore_file \.bak$
ignore_file %$
ignore_file \.dpkg-(tmp|new|old|dist)$
ignore_file \.rpm(save|new)$
ignore_file \.puppet-bak$
# Hosts to allow
cidr_allow 127.0.0.0/8
cidr_allow 192.0.2.129/32
|