Difference between revisions of "Plugin:LogFile"

From collectd Wiki
Jump to: navigation, search
(Use the Version template.)
(Use the "Manpage" template.)
Line 7: Line 7:
 
   | Copyright=''2007'' Sebastian Harl<br />''2007–2008'' Florian octo Forster
 
   | Copyright=''2007'' Sebastian Harl<br />''2007–2008'' Florian octo Forster
 
   | License={{GPLv2}}
 
   | License={{GPLv2}}
   | Manpage=[http://collectd.org/documentation/manpages/collectd.conf.5.shtml#plugin_logfile collectd.conf(5)]
+
   | Manpage={{Manpage|collectd.conf|5|plugin_logfile}}
 
}}
 
}}
 
The '''LogFile plugin''' receives log messages from the daemon and writes them to a text file.
 
The '''LogFile plugin''' receives log messages from the daemon and writes them to a text file.

Revision as of 09:49, 18 September 2009

LogFile plugin
Type: log
Callbacks: config, log, notification
Status: supported
First version: 3.9
Copyright: 2007 Sebastian Harl
2007–2008 Florian octo Forster
License: GPLv2
Manpage: collectd.conf(5)
List of Plugins

The LogFile plugin receives log messages from the daemon and writes them to a text file.

In order for other plugins to be able to report errors and warnings during initialization, the LogFile plugin should be loaded as one of the first plugins, if not as the first plugin. This means that its LoadPlugin line should be one of the first lines in the configuration file.

Synopsis

LoadPlugin "logfile"
<Plugin "logfile">
  LogLevel "info"
  File "/var/log/collectd.log"
  Timestamp true
</Plugin>

Dependencies

  • none

See also