Code

collectd.conf(5): Document the per-plugin interval configuration.
[collectd.git] / README
1  collectd - System information collection daemon
2 =================================================
3 http://collectd.org/
5 About
6 -----
8   collectd is a small daemon which collects system information periodically
9   and provides mechanisms to store and monitor the values in a variety of
10   ways.
13 Features
14 --------
16   * collectd is able to collect the following data:
18     - apache
19       Apache server utilization: Number of bytes transfered, number of
20       requests handled and detailed scoreboard statistics
22     - apcups
23       APC UPS Daemon: UPS charge, load, input/output/battery voltage, etc.
25     - apple_sensors
26       Sensors in Macs running Mac OS X / Darwin: Temperature, fanspeed and
27       voltage sensors.
29     - ascent
30       Statistics about Ascent, a free server for the game `World of Warcraft'.
32     - battery
33       Batterycharge, -current and voltage of ACPI and PMU based laptop
34       batteries.
36     - bind
37       Name server and resolver statistics from the `statistics-channel'
38       interface of BIND 9.5, 9,6 and later.
40     - conntrack
41       Number of nf_conntrack entries.
43     - contextswitch
44       Number of context switches done by the operating system.
46     - cpu
47       CPU utilization: Time spent in the system, user, nice, idle, and related
48       states.
50     - cpufreq
51       CPU frequency (For laptops with speed step or a similar technology)
53     - curl
54       Parse statistics from websites using regular expressions.
56     - curl_json
57       Retrieves JSON data via cURL and parses it according to user
58       configuration.
60     - curl_xml
61       Retrieves XML data via cURL and parses it according to user
62       configuration.
64     - dbi
65       Executes SQL statements on various databases and interprets the returned
66       data.
68     - df
69       Mountpoint usage (Basically the values `df(1)' delivers)
71     - disk
72       Disk utilization: Sectors read/written, number of read/write actions,
73       average time an IO-operation took to complete.
75     - dns
76       DNS traffic: Query types, response codes, opcodes and traffic/octets
77       transfered.
79     - email
80       Email statistics: Count, traffic, spam scores and checks.
81       See collectd-email(5).
83     - entropy
84       Amount of entropy available to the system.
86     - exec
87       Values gathered by a custom program or script.
88       See collectd-exec(5).
90     - filecount
91       Count the number of files in directories.
93     - fscache
94       Linux file-system based caching framework statistics.
96     - gmond
97       Receive multicast traffic from Ganglia instances.
99     - hddtemp
100       Harddisk temperatures using hddtempd.
102     - interface
103       Interface traffic: Number of octets, packets and errors for each
104       interface.
106     - iptables
107       Iptables' counters: Number of bytes that were matched by a certain
108       iptables rule.
110     - ipmi
111       IPMI (Intelligent Platform Management Interface) sensors information.
113     - ipvs
114       IPVS connection statistics (number of connections, octets and packets
115       for each service and destination).
116       See http://www.linuxvirtualserver.org/software/index.html.
118     - irq
119       IRQ counters: Frequency in which certain interrupts occur.
121     - java
122       Integrates a `Java Virtual Machine' (JVM) to execute plugins in Java
123       bytecode. See “Configuring with libjvm” below.
125     - load
126       System load average over the last 1, 5 and 15 minutes.
128     - lpar
129       Detailed CPU statistics of the “Logical Partitions” virtualization
130       technique built into IBM's POWER processors.
132     - libvirt
133       CPU, disk and network I/O statistics from virtual machines.
135     - madwifi
136       Queries very detailed usage statistics from wireless LAN adapters and
137       interfaces that use the Atheros chipset and the MadWifi driver.
139     - mbmon
140       Motherboard sensors: temperature, fanspeed and voltage information,
141       using mbmon(1).
143     - memcachec
144       Query and parse data from a memcache daemon (memcached).
146     - memcached
147       Statistics of the memcached distributed caching system.
148       <http://www.danga.com/memcached/>
150     - memory
151       Memory utilization: Memory occupied by running processes, page cache,
152       buffer cache and free.
154     - modbus
155       Reads values from Modbus/TCP enabled devices. Supports reading values
156       from multiple "slaves" so gateway devices can be used.
158     - multimeter
159       Information provided by serial multimeters, such as the `Metex
160       M-4650CR'.
162     - mysql
163       MySQL server statistics: Commands issued, handlers triggered, thread
164       usage, query cache utilization and traffic/octets sent and received.
166     - netapp
167       Plugin to query performance values from a NetApp storage system using the
168       “Manage ONTAP” SDK provided by NetApp.
170     - netlink
171       Very detailed Linux network interface and routing statistics. You can get
172       (detailed) information on interfaces, qdiscs, classes, and, if you can
173       make use of it, filters.
175     - network
176       Receive values that were collected by other hosts. Large setups will
177       want to collect the data on one dedicated machine, and this is the
178       plugin of choice for that.
180     - nfs
181       NFS Procedures: Which NFS command were called how often. Only NFSv2 and
182       NFSv3 right now.
184     - nginx
185       Collects statistics from `nginx' (speak: engine X), a HTTP and mail
186       server/proxy.
188     - ntpd
189       NTP daemon statistics: Local clock drift, offset to peers, etc.
191     - nut
192       Network UPS tools: UPS current, voltage, power, charge, utilisation,
193       temperature, etc. See upsd(8).
195     - olsrd
196       Queries routing information from the “Optimized Link State Routing”
197       daemon.
199     - onewire (EXPERIMENTAL!)
200       Read onewire sensors using the owcapu library of the owfs project.
201       Please read in collectd.conf(5) why this plugin is experimental.
203     - openvpn
204       RX and TX of each client in openvpn-status.log (status-version 2).
205       <http://openvpn.net/index.php/documentation/howto.html>
207     - oracle
208       Query data from an Oracle database.
210     - perl
211       The perl plugin implements a Perl-interpreter into collectd. You can
212       write your own plugins in Perl and return arbitrary values using this
213       API. See collectd-perl(5).
215     - pinba
216       Receive and dispatch timing values from Pinba, a profiling extension for
217       PHP.
219     - ping
220       Network latency: Time to reach the default gateway or another given
221       host.
223     - postgresql
224       PostgreSQL database statistics: active server connections, transaction
225       numbers, block IO, table row manipulations.
227     - powerdns
228       PowerDNS name server statistics.
230     - processes
231       Process counts: Number of running, sleeping, zombie, ... processes.
233     - protocols
234       Counts various aspects of network protocols such as IP, TCP, UDP, etc.
236     - python
237       The python plugin implements a Python interpreter into collectd. This
238       makes it possible to write plugins in Python which are executed by
239       collectd without the need to start a heavy interpreter every interval.
240       See collectd-python(5) for details.
242     - redis
243       The redis plugin gathers information from a redis server, including:
244       uptime, used memory, total connections etc.
246     - routeros
247       Query interface and wireless registration statistics from RouterOS.
249     - rrdcached
250       RRDtool caching daemon (RRDcacheD) statistics.
252     - sensors
253       System sensors, accessed using lm_sensors: Voltages, temperatures and
254       fan rotation speeds.
256     - serial
257       RX and TX of serial interfaces. Linux only; needs root privileges.
259     - snmp
260       Read values from SNMP (Simple Network Management Protocol) enabled
261       network devices such as switches, routers, thermometers, rack monitoring
262       servers, etc. See collectd-snmp(5).
264     - swap
265       Pages swapped out onto harddisk or whatever is called `swap' by the OS..
267     - table
268       Parse table-like structured files.
270     - tail
271       Follows (tails) logfiles, parses them by lines and submits matched
272       values.
274     - tape
275       Bytes and operations read and written on tape devices. Solaris only.
277     - tcpconns
278       Number of TCP connections to specific local and remote ports.
280     - teamspeak2
281       TeamSpeak2 server statistics.
283     - ted
284       Plugin to read values from `The Energy Detective' (TED).
286     - thermal
287       Linux ACPI thermal zone information.
289     - tokyotyrant
290       Reads the number of records and file size from a running Tokyo Tyrant
291       server.
293     - uptime
294       System uptime statistics.
296     - users
297       Users currently logged in.
299     - varnish
300       Various statistics from Varnish, an HTTP accelerator.
302     - vmem
303       Virtual memory statistics, e. g. the number of page-ins/-outs or the
304       number of pagefaults.
306     - vserver
307       System resources used by Linux VServers.
308       See <http://linux-vserver.org/>.
310     - wireless
311       Link quality of wireless cards. Linux only.
313     - xmms
314       Bitrate and frequency of music played with XMMS.
316     - zfs_arc
317       Statistics for ZFS' “Adaptive Replacement Cache” (ARC).
319   * Output can be written or sent to various destinations by the following
320     plugins:
322     - amqp
323       Sends JSON-encoded data to an Advanced Message Queuing Protocol (AMQP)
324       server, such as RabbitMQ.
326     - csv
327       Write to comma separated values (CSV) files. This needs lots of
328       diskspace but is extremely portable and can be analysed with almost
329       every program that can analyse anything. Even Microsoft's Excel..
331     - network
332       Send the data to a remote host to save the data somehow. This is useful
333       for large setups where the data should be saved by a dedicated machine.
335     - perl
336       Of course the values are propagated to plugins written in Perl, too, so
337       you can easily do weird stuff with the plugins we didn't dare think of
338       ;) See collectd-perl(5).
340     - python
341       It's possible to implement write plugins in Python using the python
342       plugin. See collectd-python(5) for details.
344     - rrdcached
345       Output to round-robin-database (RRD) files using the RRDtool caching
346       daemon (RRDcacheD) - see rrdcached(1). That daemon provides a general
347       implementation of the caching done by the `rrdtool' plugin.
349     - rrdtool
350       Output to round-robin-database (RRD) files using librrd. See rrdtool(1).
351       This is likely the most popular destination for such values. Since
352       updates to RRD-files are somewhat expensive this plugin can cache
353       updates to the files and write a bunch of updates at once, which lessens
354       system load a lot.
356     - unixsock
357       One can query the values from the unixsock plugin whenever they're
358       needed. Please read collectd-unixsock(5) for a description on how that's
359       done.
361     - write_http
362       Sends the values collected by collectd to a web-server using HTTP POST
363       requests. The transmitted data is either in a form understood by the
364       Exec plugin or formatted in JSON.
366   * Logging is, as everything in collectd, provided by plugins. The following
367     plugins keep up informed about what's going on:
369     - logfile
370       Writes logmessages to a file or STDOUT/STDERR.
372     - perl
373       Log messages are propagated to plugins written in Perl as well.
374       See collectd-perl(5).
376     - python
377       It's possible to implement log plugins in Python using the python plugin.
378       See collectd-python(5) for details.
380     - syslog
381       Logs to the standard UNIX logging mechanism, syslog.
383   * Notifications can be handled by the following plugins:
385     - notify_desktop
386       Send a desktop notification to a notification daemon, as defined in
387       the Desktop Notification Specification. To actually display the
388       notifications, notification-daemon is required.
389       See http://www.galago-project.org/specs/notification/.
391     - notify_email
392       Send an E-mail with the notification message to the configured
393       recipients.
395     - exec
396       Execute a program or script to handle the notification.
397       See collectd-exec(5).
399     - logfile
400       Writes the notification message to a file or STDOUT/STDERR.
402     - network
403       Send the notification to a remote host to handle it somehow.
405     - perl
406       Notifications are propagated to plugins written in Perl as well.
407       See collectd-perl(5).
409     - python
410       It's possible to implement notification plugins in Python using the
411       python plugin. See collectd-python(5) for details.
413   * Value processing can be controlled using the "filter chain" infrastructure
414     and "matches" and "targets". The following plugins are available:
416     - match_empty_counter
417       Match counter values which are currently zero.
419     - match_hashed
420       Match values using a hash function of the hostname.
422     - match_regex
423       Match values by their identifier based on regular expressions.
425     - match_timediff
426       Match values with an invalid timestamp.
428     - match_value
429       Select values by their data sources' values.
431     - target_notification
432       Create and dispatch a notification.
434     - target_replace
435       Replace parts of an identifier using regular expressions.
437     - target_scale
438       Scale (multiply) values by an arbitrary value.
440     - target_set
441       Set (overwrite) entire parts of an identifier.
443   * Miscellaneous plugins:
445     - threshold
446       Checks values against configured thresholds and creates notifications if
447       values are out of bounds. See collectd-threshold(5) for details.
449     - uuid
450       Sets the hostname to an unique identifier. This is meant for setups
451       where each client may migrate to another physical host, possibly going
452       through one or more name changes in the process.
454   * Performance: Since collectd is running as a daemon it doesn't spend much
455     time starting up again and again. With the exception of the exec plugin no
456     processes are forked. Caching in output plugins, such as the rrdtool and
457     network plugins, makes sure your resources are used efficiently. Also,
458     since collectd is programmed multithreaded it benefits from hyperthreading
459     and multicore processors and makes sure that the daemon isn't idle if only
460     one plugin waits for an IO-operation to complete.
462   * Once set up, hardly any maintenance is necessary. Setup is kept as easy
463     as possible and the default values should be okay for most users.
466 Operation
467 ---------
469   * collectd's configuration file can be found at `sysconfdir'/collectd.conf.
470     Run `collectd -h' for a list of builtin defaults. See `collectd.conf(5)'
471     for a list of options and a syntax description.
473   * When the `csv' or `rrdtool' plugins are loaded they'll write the values to
474     files. The usual place for these files is beneath `/var/lib/collectd'.
476   * When using some of the plugins, collectd needs to run as user root, since
477     only root can do certain things, such as craft ICMP packages needed to ping
478     other hosts. collectd should NOT be installed setuid root since it can be
479     used to overwrite valuable files!
481   * Sample scripts to generate graphs reside in `contrib/' in the source
482     package or somewhere near `/usr/share/doc/collectd' in most distributions.
483     Please be aware that those script are meant as a starting point for your
484     own experiments.. Some of them require the `RRDs' Perl module.
485     (`librrds-perl' on Debian) If you have written a more sophisticated
486     solution please share it with us.
488   * The RRAs of the automatically created RRD files depend on the `step'
489     and `heartbeat' settings given. If change these settings you may need to
490     re-create the files, losing all data. Please be aware of that when changing
491     the values and read the rrdtool(1) manpage thoroughly.
494 collectd and chkrootkit
495 -----------------------
497   If you are using the `dns' plugin chkrootkit(1) will report collectd as a
498   packet sniffer ("<iface>: PACKET SNIFFER(/usr/sbin/collectd[<pid>])"). The
499   plugin captures all UDP packets on port 53 to analyze the DNS traffic. In
500   this case, collectd is a legitimate sniffer and the report should be
501   considered to be a false positive. However, you might want to check that
502   this really is collectd and not some other, illegitimate sniffer.
505 Prerequisites
506 -------------
508   To compile collectd from source you will need:
510   * Usual suspects: C compiler, linker, preprocessor, make, ...
512   * A POSIX-threads (pthread) implementation.
513     Since gathering some statistics is slow (network connections, slow devices,
514     etc) the collectd is parallelized. The POSIX threads interface is being
515     used and should be found in various implementations for hopefully all
516     platforms.
518   * CoreFoundation.framework and IOKit.framework (optional)
519     For compiling on Darwin in general and the `apple_sensors' plugin in
520     particular.
521     <http://developer.apple.com/corefoundation/>
523   * libclntsh (optional)
524     Used by the `oracle' plugin.
526   * libcredis (optional)
527     Used by the redis plugin. Please note that you require a 0.2.2 version
528     or higher. <http://code.google.com/p/credis/>
530   * libcurl (optional)
531     If you want to use the `apache', `ascent', `curl', `nginx', or `write_http'
532     plugin.
533     <http://curl.haxx.se/>
535   * libdbi (optional)
536     Used by the `dbi' plugin to connect to various databases.
537     <http://libdbi.sourceforge.net/>
539   * libesmtp (optional)
540     For the `notify_email' plugin.
541     <http://www.stafford.uklinux.net/libesmtp/>
543   * libganglia (optional)
544     Used by the `gmond' plugin to process data received from Ganglia.
545     <http://ganglia.info/>
547   * libgcrypt (optional)
548     Used by the `network' plugin for encryption and authentication.
549     <http://www.gnupg.org/>
551   * libhal (optional)
552     If present, the uuid plugin will check for UUID from HAL.
553     <http://hal.freedesktop.org/>
555   * libiptc (optional)
556     For querying iptables counters.
557     <http://netfilter.org/>
559     If not found on the system, a version shipped with this distribution can
560     be used. It requires some Linux headers in /usr/include/linux. You can
561     force the build system to use the shipped version by specifying
562       --with-libiptc=shipped
563     when running the configure script.
565   * libjvm (optional)
566     Library that encapsulates the `Java Virtual Machine' (JVM). This library is
567     used by the Java plugin to execute Java bytecode. See “Configuring with
568     libjvm” below.
569     <http://openjdk.java.net/> (and others)
571   * libmemcached (optional)
572     Used by the `memcachec' plugin to connect to a memcache daemon.
573     <http://tangent.org/552/libmemcached.html>
575   * libmodbus (optional)
576     Used by the “modbus” plugin to communicate with Modbus/TCP devices. The
577     “modbus” plugin works with version 2.0.3 of the library – due to frequent
578     API changes other versions may or may not compile cleanly.
579     <http://www.libmodbus.org/>
581   * libmysqlclient (optional)
582     Unsurprisingly used by the `mysql' plugin.
583     <http://dev.mysql.com/>
585   * libnetapp (optional)
586     Required for the “netapp” plugin.
587     This library is part of the “Manage ONTAP SDK” published by NetApp.
589   * libnetlink (optional)
590     Used, obviously, for the `netlink' plugin.
591     <http://www.linuxfoundation.org/en/Net:Iproute2>
593   * libnetsnmp (optional)
594     For the `snmp' plugin.
595     <http://www.net-snmp.org/>
597   * libnotify (optional)
598     For the `notify_desktop' plugin.
599     <http://www.galago-project.org/>
601   * liboping (optional)
602     Used by the `ping' plugin to send and receive ICMP packets.
603     <http://verplant.org/liboping/>
605   * libowcapi (optional)
606     Used by the `onewire' plugin to read values from onewire sensors (or the
607     owserver(1) daemon).
608     <http://www.owfs.org/>
610   * libpcap (optional)
611     Used to capture packets by the `dns' plugin.
612     <http://www.tcpdump.org/>
614   * libperfstat (optional)
615     Used by various plugins to gather statistics under AIX.
617   * libperl (optional)
618     Obviously used by the `perl' plugin. The library has to be compiled with
619     ithread support (introduced in Perl 5.6.0).
620     <http://www.perl.org/>
622   * libpq (optional)
623     The PostgreSQL C client library used by the `postgresql' plugin.
624     <http://www.postgresql.org/>
626   * libprotobuf-c, protoc-c (optional)
627     Used by the `pinba' plugin to generate a parser for the network packets
628     sent by the Pinba PHP extension.
629     <http://code.google.com/p/protobuf-c/>
631   * libpython (optional)
632     Used by the `python' plugin. Currently, only 2.3 ≦ Python < 3 is supported.
633     <http://www.python.org/>
635   * librabbitmq (optional; also called “rabbitmq-c”)
636     Used by the AMQP plugin for AMQP connections, for example to RabbitMQ.
637     <http://hg.rabbitmq.com/rabbitmq-c/>
639   * librouteros (optional)
640     Used by the `routeros' plugin to connect to a device running `RouterOS'.
641     <http://verplant.org/librouteros/>
643   * librrd (optional)
644     Used by the `rrdtool' and `rrdcached' plugins. The latter requires RRDtool
645     client support which was added after version 1.3 of RRDtool. Versions 1.0,
646     1.2 and 1.3 are known to work with the `rrdtool' plugin.
647     <http://oss.oetiker.ch/rrdtool/>
649   * librt, libsocket, libkstat, libdevinfo (optional)
650     Various standard Solaris libraries which provide system functions.
651     <http://developers.sun.com/solaris/>
653   * libsensors (optional)
654     To read from `lm_sensors', see the `sensors' plugin.
655     <http://www.lm-sensors.org/>
657   * libstatgrab (optional)
658     Used by various plugins to collect statistics on systems other than Linux
659     and/or Solaris.
660     <http://www.i-scream.org/libstatgrab/>
662   * libtokyotyrant (optional)
663     Used by the tokyotyrant plugin.
664     <http://1978th.net/tokyotyrant/>
666   * libupsclient/nut (optional)
667     For the `nut' plugin which queries nut's `upsd'.
668     <http://networkupstools.org/>
670   * libvirt (optional)
671     Collect statistics from virtual machines.
672     <http://libvirt.org/>
674   * libxml2 (optional)
675     Parse XML data. This is needed for the `ascent' and `libvirt' plugins.
676     <http://xmlsoft.org/>
678   * libxmms (optional)
679     <http://www.xmms.org/>
681   * libyajl (optional)
682     Parse JSON data. This is needed for the `curl_json' plugin.
683     <http://github.com/lloyd/yajl>
685   * libvarnish (optional)
686      Fetches statistics from a Varnish instance. This is needed for the Varnish plugin
687      <http://varnish-cache.org>
689 Configuring / Compiling / Installing
690 ------------------------------------
692   To configure, build and install collectd with the default settings, run
693   `./configure && make && make install'.  For detailed, generic instructions
694   see INSTALL. For a complete list of configure options and their description,
695   run `./configure --help'.
697   By default, the configure script will check for all build dependencies and
698   disable all plugins whose requirements cannot be fulfilled (any other plugin
699   will be enabled). To enable a plugin, install missing dependencies (see
700   section `Prerequisites' above) and rerun `configure'. If you specify the
701   `--enable-<plugin>' configure option, the script will fail if the depen-
702   dencies for the specified plugin are not met. In that case you can force the
703   plugin to be built using the `--enable-<plugin>=force' configure option.
704   This will most likely fail though unless you're working in a very unusual
705   setup and you really know what you're doing. If you specify the
706   `--disable-<plugin>' configure option, the plugin will not be built. If you
707   specify the `--enable-all-plugins' or `--disable-all-plugins' configure
708   options, all plugins will be enabled or disabled respectively by default.
709   Explicitly enabling or disabling a plugin overwrites the default for the
710   specified plugin. These options are meant for package maintainers and should
711   not be used in everyday situations.
713   By default, collectd will be installed into `/opt/collectd'. You can adjust
714   this setting by specifying the `--prefix' configure option - see INSTALL for
715   details. If you pass DESTDIR=<path> to `make install', <path> will be
716   prefixed to all installation directories. This might be useful when creating
717   packages for collectd.
719 Configuring with libjvm
720 -----------------------
722   To determine the location of the required files of a Java installation is not
723   an easy task, because the locations vary with your kernel (Linux, SunOS, …)
724   and with your architecture (x86, SPARC, …) and there is no ‘java-config’
725   script we could use. Configuration of the JVM library is therefore a bit
726   tricky.
728   The easiest way to use the `--with-java=$JAVA_HOME' option, where
729   `$JAVA_HOME' is usually something like:
730     /usr/lib/jvm/java-1.5.0-sun-1.5.0.14
732   The configure script will then use find(1) to look for the following files:
734     - jni.h
735     - jni_md.h
736     - libjvm.so
738   If found, appropriate CPP-flags and LD-flags are set and the following
739   library checks succeed.
741   If this doesn't work for you, you have the possibility to specify CPP-flags,
742   C-flags and LD-flags for the ‘Java’ plugin by hand, using the following three
743   (environment) variables:
745     - JAVA_CPPFLAGS
746     - JAVA_CFLAGS
747     - JAVA_LDFLAGS
749   For example (shortened for demonstration purposes):
751     ./configure JAVA_CPPFLAGS="-I$JAVA_HOME/include -I$JAVA_HOME/include/linux"
753   Adding "-ljvm" to the JAVA_LDFLAGS is done automatically, you don't have to
754   do that.
756 Crosscompiling
757 --------------
759   To compile correctly collectd needs to be able to initialize static
760   variables to NAN (Not A Number). Some C libraries, especially the GNU
761   libc, have a problem with that.
763   Luckily, with GCC it's possible to work around that problem: One can define
764   NAN as being (0.0 / 0.0) and `isnan' as `f != f'. However, to test this
765   ``implementation'' the configure script needs to compile and run a short
766   test program. Obviously running a test program when doing a cross-
767   compilation is, well, challenging.
769   If you run into this problem, you can use the `--with-nan-emulation'
770   configure option to force the use of this implementation. We can't promise
771   that the compiled binary actually behaves as it should, but since NANs
772   are likely never passed to the libm you have a good chance to be lucky.
774   Likewise, collectd needs to know the layout of doubles in memory, in order
775   to craft uniform network packets over different architectures. For this, it
776   needs to know how to convert doubles into the memory layout used by x86. The
777   configure script tries to figure this out by compiling and running a few
778   small test programs. This is of course not possible when cross-compiling.
779   You can use the `--with-fp-layout' option to tell the configure script which
780   conversion method to assume. Valid arguments are:
782     * `nothing'    (12345678 -> 12345678)
783     * `endianflip' (12345678 -> 87654321)
784     * `intswap'    (12345678 -> 56781234)
787 Contact
788 -------
790   For questions, bug reports, development information and basically all other
791   concerns please send an email to collectd's mailing list at
792   <collectd at verplant.org>.
794   For live discussion and more personal contact visit us in IRC, we're in
795   channel #collectd on freenode.
798 Author
799 ------
801   Florian octo Forster <octo at verplant.org>,
802   Sebastian tokkee Harl <sh at tokkee.org>,
803   and many contributors (see `AUTHORS').
805   Please send bug reports and patches to the mailing list, see `Contact'
806   above.