From: Florian Forster Date: Thu, 17 May 2007 12:08:43 +0000 (+0200) Subject: collectd(1): Changed plugin information for v4. X-Git-Tag: collectd-4.0.0~40 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=edb7d4cc371fee720d5b42d3ab30df4b0935e554;p=collectd.git collectd(1): Changed plugin information for v4. Also removed information about the `modes' and RRD-file definitions. --- diff --git a/src/collectd.pod b/src/collectd.pod index 6d298049..4a62ce6b 100644 --- a/src/collectd.pod +++ b/src/collectd.pod @@ -8,120 +8,16 @@ collectd I<[options]> =head1 DESCRIPTION -collectd is a daemon that collects various system statistics periodically and -stores them into RRD-files. Which data is collected depends on compile-time -settings. The following features may be available: - -=over 4 - -=item - -Apache and lighttpd server statistics (I) - -=item - -Apple hardware sensors (I, Darwin only) - -=item - -Battery status (I) - -=item - -CPU utilization (I) - -=item - -Mountpoint usage (I) - -=item - -Disk and partition usage/throughput (I) - -=item - -DNS traffic (I) - -=item - -Email usage (I) - -=item - -Harddisk temperatures (I) - -=item - -Irq (I) - -=item - -System load averages (I) - -=item - -Motherboard monitor (I) - -=item - -Memory usage (I) - -=item - -MySQL statistics (I) - -=item - -NFS utilization (I, Linux only) - -=item - -Embedded Perl interpreter (I) - -=item - -Network latency (I) - -=item - -Number of processes (I, Linux only) - -=item - -lm_sensors information (I, Linux only) - -=item - -Serial port traffic (I, Linux only) - -=item - -Swap usage (I) - -=item - -Tape drive usage (I, Solaris only) - -=item - -Network traffic (I) - -=item - -Number of users logged into the system (I) - -=item - -System ressources used by VServers (I) - -=item - -Wireless network stats (I) - -=back +collectd is a daemon that receives system statistics and makes them available +in a number of ways. The main daemon itself doesn't have any real functionality +appart from loading, querying and submitting to plugins. For a description of +available plugins please see L below. =head1 OPTIONS +Most of collectd's configuration is done using using a configfile. See +L for an in-depth description of all options. + =over 4 =item B<-C> Iconfig-fileE> @@ -149,30 +45,40 @@ Output usage information and exit. =back -=head1 MODES +=head1 PLUGINS -collectd can operate in four different operating modes. The modes are described -below. +As noted above, the real power of collectd lies within it's plugins. There are +two big groups of plugins, B and B plugins: -The simplest mode is the so called B. Data is collected locally and -written in RRD files that reside in I. This is the default mode when -collectd is linked against C. +=over 4 -The modes B and B are used to send data over a -network and receive it again. +=item -In B the daemon collects the data locally and sends its results -to one or more network addresses. No RRD files are written locally in this -case. If collectd is not linked against C this is the default mode. +Input plugins are queried periodically. They somehow aquire the current value +of whatever they where designed to work with and submit these values back to +the daemon, i. e. they "dispatch" the values. As an example, the C +reads the current cpu-counters of time spent in the various modes (user, +system, nice, ...) and dispatches these counters to the daemon. -If started in B the daemon will listen on one or more interfaces -and write the data it receives to RRD files. No data is collected locally. +=item -In the last mode, B, data is collected locally and written in -text files that reside in I. +Output plugins get the dispatched values from the daemon and does something +with them. Common applications are writing to RRD-files, CSV-files or sending +the data over a network link to a remote box. -Please refer to L for the configuration options and default -values. +=back + +Of course not all plugins fit neatly into one of the two above categories. The +C, for example, is able to send (i.Ee. "write") B +receive (i.Ee. "dispatch") values. Also, it opens a socket upon +initialization and dispatches the values when it receives them and isn't +triggered at the same time the input plugins are being read. You can think if +the network receive part as working asynchronous if it helps. + +In addition to the above, there are "logging plugins". Right now those are the +C and the C. With these plugins collectd can +provide information about issues and significant situations to the user. +Several loglevels let you suppress uninteresting messages. =head1 SPECIAL PLUGINS @@ -442,319 +348,12 @@ required by this plugin. The B homepage can be found at L. -=head1 RRD FILES - -The RRD files are created automatically. The size of the RRAs depend on the -compile time settings of I and I. With the default values (I -= B<10>, I = B<1200>) the following RRAs are created: - - RRA:AVERAGE:0.1:1:8640 - RRA:AVERAGE:0.1:50:1210 - RRA:AVERAGE:0.1:223:1202 - RRA:AVERAGE:0.1:2635:1201 - RRA:MIN:0.1:1:8640 - RRA:MIN:0.1:50:1210 - RRA:MIN:0.1:223:1202 - RRA:MIN:0.1:2635:1201 - RRA:MAX:0.1:1:8640 - RRA:MAX:0.1:50:1210 - RRA:MAX:0.1:223:1202 - RRA:MAX:0.1:2635:1201 - -By default collectd uses a 10 second I. Thus the RRAs contain the -following timespans. If you've changed the I at compile time you will -have calculate resolution and timespan yourself. - - PDP per CDP | Resolution | Data points | Timespan - ------------+--------------+-------------+--------- - 1 | 10.0 seconds ! 8640 ! 1 day - 50 | 8.3 minutes | 1210 | 1 week - 223 | 37.2 minutes | 1202 | 1 month - 2635 | 7.3 hours | 1201 | 1 year - -The DS'es depend on the module creating the RRD files: - -=over 4 - -=item Apache traffic (F) - - DS:count:COUNTER:HEARTBEAT:0:134217728 - -=item Apache requests (F) - - DS:count:COUNTER:HEARTBEAT:0:1048576 - -=item Apache scoreboard (FnameE>.rrd>) - - DS:count:GAUGE:HEARTBEAT:0:U - -=item Apple temperature sensor (FnameE>.rrd>) - - DS:value:GAUGE:HEARTBEAT:U:U - -=item Apple fanspeed sensor (FnameE>.rrd>) - - DS:value:GAUGE:HEARTBEAT:U:U - -=item Battery charge (FnameE>/charge.rrd>) - - DS:charge:GAUGE:HEARTBEAT:0:U - -=item Battery current (FnameE>/current.rrd>) - - DS:current:GAUGE:HEARTBEAT:U:U - -=item Battery voltage (FnameE>/voltage.rrd>) - - DS:voltage:GAUGE:HEARTBEAT:U:U - -=item CPU (FnumE>.rrd>) - - DS:user:COUNTER:HEARTBEAT:0:100 - DS:nice:COUNTER:HEARTBEAT:0:100 - DS:syst:COUNTER:HEARTBEAT:0:100 - DS:idle:COUNTER:HEARTBEAT:0:100 - DS:wait:COUNTER:HEARTBEAT:0:100 - -=item CPU frequency (FnumE>.rrd>) - - DS:value:GAUGE:HEARTBEAT:0:U - -=item Mountpoints (FpathE>.rrd>) - - DS:used:GAUGE:HEARTBEAT:0:U - DS:free:GAUGE:HEARTBEAT:0:U - -=item Diskstats (FmajorE>-IminorE>.rrd>) - - DS:rcount:COUNTER:HEARTBEAT:0:U - DS:rmerged:COUNTER:HEARTBEAT:0:U - DS:rbytes:COUNTER:HEARTBEAT:0:U - DS:rtime:COUNTER:HEARTBEAT:0:U - DS:wcount:COUNTER:HEARTBEAT:0:U - DS:wmerged:COUNTER:HEARTBEAT:0:U - DS:wbytes:COUNTER:HEARTBEAT:0:U - DS:wtime:COUNTER:HEARTBEAT:0:U - -=item Diskstats (FmajorE>-IminorE>.rrd>) - - DS:rcount:COUNTER:HEARTBEAT:0:U - DS:rbytes:COUNTER:HEARTBEAT:0:U - DS:wcount:COUNTER:HEARTBEAT:0:U - DS:wbytes:COUNTER:HEARTBEAT:0:U - -=item E-Mail count (FtypeE>.rrd>) - - DS:count:GAUGE:HEARTBEAT:0:U - -=item E-Mail size (FtypeE>.rrd>) - - DS:size:GAUGE:HEARTBEAT:0:U - -=item HDD Temperature (FmajorE>-IminorE>.rrd>) - - DS:value:GAUGE:HEARTBEAT:U:U - -=item Irq (FirqnumberE>.rrd>) - - DS:value:COUNTER:HEARTBEAT:0:65535 - -=item System load (F) - - DS:shortterm:GAUGE:HEARTBEAT:0:100 - DS:midterm:GAUGE:HEARTBEAT:0:100 - DS:longterm:GAUGE:HEARTBEAT:0:100 - -=item Memory usage (F) - - DS:used:GAUGE:HEARTBEAT:0:9223372036854775807 - DS:free:GAUGE:HEARTBEAT:0:9223372036854775807 - DS:buffers:GAUGE:HEARTBEAT:0:9223372036854775807 - DS:cached:GAUGE:HEARTBEAT:0:9223372036854775807 - -=item MySQL commands and handlers (FcommandE>.rrd> and FhandlerE>.rrd>) - - DS:value:COUNTER:HEARTBEAT:0:U - -=item MySQL query cache (F) - - DS:hits:COUNTER:HEARTBEAT:0:U - DS:inserts:COUNTER:HEARTBEAT:0:U - DS:not_cached:COUNTER:HEARTBEAT:0:U - DS:lowmem_prunes:COUNTER:HEARTBEAT:0:U - DS:queries_in_cache:GAUGE:HEARTBEAT:0:U - -=item MySQL threads (F) - - DS:running:GAUGE:HEARTBEAT:0:U - DS:connected:GAUGE:HEARTBEAT:0:U - DS:cached:GAUGE:HEARTBEAT:0:U - DS:created:COUNTER:HEARTBEAT:0:U - -=item NFSv2 Procedures (F.rrd>) - - DS:null:COUNTER:HEARTBEAT:0:U - DS:getattr:COUNTER:HEARTBEAT:0:U - DS:setattr:COUNTER:HEARTBEAT:0:U - DS:root:COUNTER:HEARTBEAT:0:U - DS:lookup:COUNTER:HEARTBEAT:0:U - DS:readlink:COUNTER:HEARTBEAT:0:U - DS:read:COUNTER:HEARTBEAT:0:U - DS:wrcache:COUNTER:HEARTBEAT:0:U - DS:write:COUNTER:HEARTBEAT:0:U - DS:create:COUNTER:HEARTBEAT:0:U - DS:remove:COUNTER:HEARTBEAT:0:U - DS:rename:COUNTER:HEARTBEAT:0:U - DS:link:COUNTER:HEARTBEAT:0:U - DS:symlink:COUNTER:HEARTBEAT:0:U - DS:mkdir:COUNTER:HEARTBEAT:0:U - DS:rmdir:COUNTER:HEARTBEAT:0:U - DS:readdir:COUNTER:HEARTBEAT:0:U - DS:fsstat:COUNTER:HEARTBEAT:0:U - -=item NFSv3 Procedures (F.rrd>) - - DS:null:COUNTER:HEARTBEAT:0:U - DS:getattr:COUNTER:HEARTBEAT:0:U - DS:setattr:COUNTER:HEARTBEAT:0:U - DS:lookup:COUNTER:HEARTBEAT:0:U - DS:access:COUNTER:HEARTBEAT:0:U - DS:readlink:COUNTER:HEARTBEAT:0:U - DS:read:COUNTER:HEARTBEAT:0:U - DS:write:COUNTER:HEARTBEAT:0:U - DS:create:COUNTER:HEARTBEAT:0:U - DS:mkdir:COUNTER:HEARTBEAT:0:U - DS:symlink:COUNTER:HEARTBEAT:0:U - DS:mknod:COUNTER:HEARTBEAT:0:U - DS:remove:COUNTER:HEARTBEAT:0:U - DS:rmdir:COUNTER:HEARTBEAT:0:U - DS:rename:COUNTER:HEARTBEAT:0:U - DS:link:COUNTER:HEARTBEAT:0:U - DS:readdir:COUNTER:HEARTBEAT:0:U - DS:readdirplus:COUNTER:HEARTBEAT:0:U - DS:fsstat:COUNTER:HEARTBEAT:0:U - DS:fsinfo:COUNTER:HEARTBEAT:0:U - DS:pathconf:COUNTER:HEARTBEAT:0:U - DS:commit:COUNTER:HEARTBEAT:0:U - -=item Network latency / Ping (FhostnameE>.rrd>) - - DS:ping:GAUGE:HEARTBEAT:0:65535 - -=item Processes (F) - - DS:running:GAUGE:HEARTBEAT:0:65535 - DS:sleeping:GAUGE:HEARTBEAT:0:65535 - DS:zombies:GAUGE:HEARTBEAT:0:65535 - DS:stopped:GAUGE:HEARTBEAT:0:65535 - DS:paging:GAUGE:HEARTBEAT:0:65535 - DS:blocked:GAUGE:HEARTBEAT:0:65535 - -=item lm_sensors fanspeed sensor (FinstE>.rrd> or FchipE>/fanspeed-IinstE>.rrd>) - - DS:value:GAUGE:HEARTBEAT:U:U - -=item lm_sensors temperature sensor (FinstE>.rrd> or FchipE>/temperature-IinstE>.rrd>) - - DS:value:GAUGE:HEARTBEAT:U:U - -=item lm_sensors voltage sensor (FinstE>.rrd> or FchipE>/voltage-IinstE>.rrd>) - - DS:voltage:GAUGE:HEARTBEAT:U:U - -=item Serial port traffic (FnumE>.rrd>) - - DS:incoming:COUNTER:HEARTBEAT:0:U - DS:outgoing:COUNTER:HEARTBEAT:0:U - -=item Spam score (F) - - DS:score:GAUGE:HEARTBEAT:0:U - -=item Spam checks (FtypeE>.rrd>) - - DS:hits:GAUGE:HEARTBEAT:0:U - -=item Swap usage (F) - - DS:used:GAUGE:HEARTBEAT:0:1099511627776 - DS:free:GAUGE:HEARTBEAT:0:1099511627776 - DS:cached:GAUGE:HEARTBEAT:0:1099511627776 - DS:resv:GAUGE:HEARTBEAT:0:1099511627776 - -=item Tape drive usage (FnameE>.rrd>) - - DS:rcount:COUNTER:HEARTBEAT:0: - DS:rmerged:COUNTER:HEARTBEAT:0:U - DS:rbytes:COUNTER:HEARTBEAT:0:U - DS:rtime:COUNTER:HEARTBEAT:0:U - DS:wcount:COUNTER:HEARTBEAT:0:U - DS:wmerged:COUNTER:HEARTBEAT:0:U - DS:wbytes:COUNTER:HEARTBEAT:0:U - DS:wtime:COUNTER:HEARTBEAT:0:U - -=item Network traffic (FinterfaceE>.rrd>) - - DS:incoming:COUNTER:HEARTBEAT:0:U - DS:outgoing:COUNTER:HEARTBEAT:0:U - -=item Interface packets (FinterfaceE>.rrd>) - - DS:rx:COUNTER:HEARTBEAT:0:U - DS:tx:COUNTER:HEARTBEAT:0:U - -=item Interface errors (FinterfaceE>.rrd>) - - DS:rx:COUNTER:HEARTBEAT:0:U - DS:tx:COUNTER:HEARTBEAT:0:U - -=item Users (F) - - DS:users:GAUGE:HEARTBEAT:0:65535 - -=item VServer load (FxidE>/load.rrd>) - - DS:shortterm:GAUGE:HEARTBEAT:0:100 - DS:midterm:GAUGE:HEARTBEAT:0:100 - DS:longterm:GAUGE:HEARTBEAT:0:100 - -=item VServer threads (FxidE>/threads.rrd>) - - DS:total:GAUGE:HEARTBEAT:0:65535 - DS:running:GAUGE:HEARTBEAT:0:65535 - DS:uninterruptible:GAUGE:HEARTBEAT:0:65535 - DS:onhold:GAUGE:HEARTBEAT:0:65535 - -=item VServer network traffic (FxidE>/traffic-InameE>.rrd>) - - DS:incoming:COUNTER:HEARTBEAT:0:9223372036854775807 - DS:outgoing:COUNTER:HEARTBEAT:0:9223372036854775807 - DS:failed:COUNTER:HEARTBEAT:0:9223372036854775807 - -=item VServer processes (FxidE>/vs_processes.rrd>) - - DS:total:GAUGE:HEARTBEAT:0:65535 - -=item VServer memory usage (FxidE>/vs_memory.rrd>) - - DS:vm:GAUGE:HEARTBEAT:0:9223372036854775807 - DS:vml:GAUGE:HEARTBEAT:0:9223372036854775807 - DS:rss:GAUGE:HEARTBEAT:0:9223372036854775807 - DS:anon:GAUGE:HEARTBEAT:0:9223372036854775807 - -=item Wireless link quality (FinterfaceE>.rrd>) - - DS:quality:GAUGE:HEARTBEAT:0:U - DS:power:GAUGE:HEARTBEAT:U:0 - DS:noise:GAUGE:HEARTBEAT:U:0 - -=back - =head1 SEE ALSO L, L, L, L, L, -L +L, +L =head1 AUTHOR