Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

collectdmon(1) [debian man page]

COLLECTDMON(1)							     collectd							    COLLECTDMON(1)

NAME
collectdmon - Monitoring daemon for collectd SYNOPSIS
collectdmon [options] [-- collectd options] DESCRIPTION
collectdmon is a small "wrapper" daemon which starts and monitors the collectd daemon. If collectd terminates it will automatically be restarted, unless collectdmon was told to shut it down. OPTIONS
collectdmon supports the following options: -c <path> Specify the pathname of the collectd binary. You may either specify an absolute path or simply the name of the binary in which case the PATH variable will be searched for it. The default is "collectd". -P <pid-file> Specify the pid file. The default is "/var/run/collectdmon.pid". -h Output usage information and exit. collectd options Specify options that are passed on to collectd. If it is not already included, -f will be added to these options. See collectd(1). SIGNALS
collectdmon accepts the following signals: SIGINT, SIGTERM These signals cause collectdmon to terminate collectd, wait for its termination and then shut down. SIGHUP This signal causes collectdmon to terminate collectd, wait for its termination and then restart it. SEE ALSO
collectd(1), collectd.conf(5), <http://collectd.org/> AUTHOR
collectd has been written by Florian Forster <octo at verplant.org> and many contributors (see `AUTHORS'). collectdmon has been written by Sebastian Harl <sh@tokkee.org>. 5.1.0 2012-04-02 COLLECTDMON(1)

Check Out this Related Man Page

COLLECTD-EMAIL(5)						     collectd							 COLLECTD-EMAIL(5)

NAME
collectd-email - Documentation of collectd's "email plugin" SYNOPSIS
# See collectd.conf(5) LoadPlugin email # ... <Plugin email> SocketGroup "collectd" SocketPerms "0770" MaxConns 5 </Plugin> DESCRIPTION
The "email plugin" opens an UNIX-socket over which one can submit email statistics, such as the number of "ham", "spam", "virus", etc. mails received/handled, spam scores and matched spam checks. This plugin is intended to be used with the Mail::SpamAssassin::Plugin::Collectd SpamAssassin-plugin which is included in contrib/, but is of course not limited to that use. OPERATION
This plugin collects data indirectly by providing a UNIX-socket that external programs can connect to. A simple line based protocol is used to communicate with the plugin: o E-Mail type (e.g. "ham", "spam", "virus", ...) and size (bytes): e:<type>:<size> If "size" is less than or equal to zero, "size" is ignored. o Spam score: s:<value> o Successful spam checks (e.g. "BAYES_99", "SUBJECT_DRUG_GAP_C", ...): c:<type1>[,<type2>,...] Each line is limited to 256 characters (including the newline character). Longer lines will be ignored. SEE ALSO
collectd(1), collectd.conf(5) AUTHOR
The "email plugin" has been written by Sebastian Harl <sh at tokkee.org>. The SpamAssassin-plugin has been written by Alexander Wirt <formorer at formorer.de>. This manpage has been written by Florian Forster <octo at verplant.org>. 5.1.0 2012-04-02 COLLECTD-EMAIL(5)
Man Page

We Also Found This Discussion For You

1. Shell Programming and Scripting

How to make parallel processing rather than serial processing ??

Hello everybody, I have a little problem with one of my program. I made a plugin for collectd (a stats collector for my servers) but I have a problem to make it run in parallel. My program gathers stats from logs, so it needs to run in background waiting for any new lines added in the log... (0 Replies)
Discussion started by: Samb95
0 Replies