Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

munin::node::config(3pm) [debian man page]

Munin::Node::Config(3pm)				User Contributed Perl Documentation				  Munin::Node::Config(3pm)

NAME
Munin::Node::Config - Singleton node configuration container. Reads configuration files. SYNOPSIS
$config = Munin::Node::Config->instance(); $config->parse_config_from_file('/etc/munin/munin-node.conf'); print $config->{fqdn}, " "; METHODS
instance $config = Munin::Node::Config->instance(); Returns the singleton instance of this class. reinitialize $config->reinitialize(); Deletes all configuration variables $config->reinitialize(\%variables); Deletes all configuration variables and reinitalizes the object with values from \%variables. parse_config_from_file $config->parse_config_from_file($filename); Parses the munin node configuration from a file. Dies if the file fails the paranoia checks. parse_config $config->parse_config($io_handle); Parses the munin node configuration from a filehandle. process_plugin_configuration_files $config->process_plugin_configuration_files(); Parses all unignored files in the plugin configuration folder. parse_plugin_config_file $config->parse_plugin_config_file($file); Parses the plugin configuration in $file. parse_plugin_config $config->parse_plugin_config($io_handle); Parses the plugin configuration from an IO::Handle. apply_wildcards $config->apply_wildcards(); Applies the contents of any wildcard plugin configuration sections to matching plugins. See http://munin-monitoring.org/wiki/Priority_and_inheritance <http://munin-monitoring.org/wiki/Priority_and_inheritance> perl v5.14.2 2013-11-12 Munin::Node::Config(3pm)

Check Out this Related Man Page

MUNIN-NODE(1p)						User Contributed Perl Documentation					    MUNIN-NODE(1p)

NAME
munin-node - A daemon to gather information in cooperation with the main Munin program SYNOPSIS
munin-node [--options] DESCRIPTION
munin-node is a daemon for reporting statistics on system performance. It doesn't produce these itself, but instead relies on a number of plugins which are responsible for gathering the data they require, and describing how this should be graphed. In fact, it does little more than fielding requests from the Munin master, running the appropriate plugins, and returning the output they produce. OPTIONS
--config <configfile> Use <file> as configuration file. [/etc/munin/munin-node.conf] --[no]paranoia Only run plugins owned by root. Check permissions as well. [--noparanoia] --help View this help message. --debug View debug messages. This can be very verbose. --pidebug Plugin debug. Sets the environment variable MUNIN_DEBUG to 1 so that plugins may enable debugging. FILES
/etc/munin/munin-node.conf /etc/munin/plugins/* /etc/munin/plugin-conf.d/* /var/run/munin/munin-node.pid /var/log/munin/munin-node.log VERSION
This is munin-node v2.0.6-4+deb7u2 $Id$ AUTHORS
Audun Ytterdal, Jimmy Olsen, and Tore Anderson. BUGS
Please see http://munin-monitoring.org/report/1 <http://munin-monitoring.org/report/1>. COPYRIGHT
Copyright (C) 2002-2006 Audun Ytterdal, Jimmy Olsen, and Tore Anderson / Linpro AS. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This program is released under the GNU General Public License SEE ALSO
For information on configuration options, please refer to the man page for munin-node.conf. Many plugins can report whether or not they can reasonably be used on the node. "munin-node-configure" can use this information to help manage installed plugins. The network protocol is documented at http://munin-monitoring.org/wiki/network-protocol <http://munin-monitoring.org/wiki/network-protocol> perl v5.14.2 2013-11-12 MUNIN-NODE(1p)
Man Page