Code

Do not split off packages introducing new recommendations or suggestions.
[pkg-collectd.git] / debian / README.Debian
1 collectd on Debian
2 ==================
4 General notes:
5 --------------
7 - This package is split up into several packages to prevent you from having to
8   install dependencies that you don't actually need. Any plugin that has 
9   dependencies other than libc gets its own package.
11 Configuring collectd:
12 ---------------------
14 - collectd uses a similar configuration layout as openvpn does. That is to
15   say that one daemon process is started for each configuration file found in
16   /etc/collectd/.
18 - See collectd.conf(5) for details about configuring collectd.
20 Building your own plugins:
21 --------------------------
23 - If you want to contribute plugins to the official distribution you should
24   read http://collectd.org/dev-info.shtml.
26 - If you want to build plugins for your personal use only simply install the
27   collectd-dev package and use /usr/share/doc/collectd-dev/examples/myplugin.c
28   as a starting point (Note: This is already a working example, though it does
29   not collect any useful data).
30   
31   The resulting file can be compiled as follows:
33     gcc -shared -fPIC -o myplugin.so myplugin.c
35   Copy myplugin.so to /usr/lib/collectd and add the following line to your
36   collectd config file:
38     LoadPlugin myplugin
40   Restart collectd and you're done.