Added sample collectd.conf
authorocto <octo>
Tue, 17 Jan 2006 12:13:53 +0000 (12:13 +0000)
committerocto <octo>
Tue, 17 Jan 2006 12:13:53 +0000 (12:13 +0000)
Updates README

README
contrib/collectd.conf [new file with mode: 0644]

diff --git a/README b/README
index 0434c75..18fcf0a 100644 (file)
--- a/README
+++ b/README
@@ -44,6 +44,9 @@ Features
     - Ping latency
       (Time to reach the default gateway or another given host)
 
+    - Process counts
+      (Number of running, sleeping, zombie, ... processes)
+
     - Serial
       (RX and TX of serial interfaces)
 
diff --git a/contrib/collectd.conf b/contrib/collectd.conf
new file mode 100644 (file)
index 0000000..147f88d
--- /dev/null
@@ -0,0 +1,38 @@
+#
+# Config file for collectd(1).
+# Please read collectd.conf(5) for a list of options.
+# http://verplant.org/collectd/
+#
+
+Mode    Local
+DataDir   /var/lib/collectd
+PIDFile   /var/run/collectd.pid
+PluginDir /usr/lib/collectd
+
+LoadPlugin cpu
+LoadPlugin cpufreq
+LoadPlugin df
+LoadPlugin disk
+LoadPlugin load
+LoadPlugin memory
+LoadPlugin nfs
+LoadPlugin ping
+LoadPlugin processes
+LoadPlugin serial
+LoadPlugin swap
+LoadPlugin traffic
+LoadPlugin users
+#LoadPlugin hddtemp
+#LoadPlugin mysql
+#LoadPlugin sensors
+
+#<Plugin ping>
+#      Host host.foo.bar
+#</Plugin>
+
+#<Plugin mysql>
+#      Host database.serv.er
+#      User db_user
+#      Password secret
+##     Database db_name
+#</Plugin>