diff options
| author | makefu <github@syntax-fehler.de> | 2012-10-05 06:45:26 +0200 | 
|---|---|---|
| committer | makefu <github@syntax-fehler.de> | 2012-10-05 06:45:26 +0200 | 
| commit | 957e2d7469b0e3d88e06b6a15e91478efc63cd62 (patch) | |
| tree | 55d1ab266c9be275923af11520f9a957fee153cc | |
| parent | 6de3459e0a20f9a1d01197a3b1bbb9e63344c65a (diff) | |
collectd configs: initial commit
| -rw-r--r-- | Monitoring/collectd/collectd.conf | 37 | ||||
| -rw-r--r-- | Monitoring/collectd/supervisor.d/collectd.conf | 3 | 
2 files changed, 40 insertions, 0 deletions
diff --git a/Monitoring/collectd/collectd.conf b/Monitoring/collectd/collectd.conf new file mode 100644 index 00000000..8779f418 --- /dev/null +++ b/Monitoring/collectd/collectd.conf @@ -0,0 +1,37 @@ +Hostname "HOST1" +Interval 10 +LoadPlugin cpu +LoadPlugin df +LoadPlugin disk +LoadPlugin interface +LoadPlugin load +LoadPlugin memory +LoadPlugin swap +LoadPlugin users + +<Plugin interface> +  Interface "eth0" +  Interface "retiolum" +</Plugin> + +<Plugin df> +  Device "/dev/xvda1" +  IgnoreSelected false +</Plugin> +<Plugin disk> +  Disk "/xvda/" +  IgnoreSelected false +</Plugin> + +LoadPlugin "write_graphite" +<Plugin "write_graphite"> + <Carbon> +   Host "no_omo.retiolum" +   Port "2003" +   Prefix "retiolum." +   #Postfix "" +   EscapeCharacter "_" +   StoreRates false +   AlwaysAppendDS false + </Carbon> +</Plugin> diff --git a/Monitoring/collectd/supervisor.d/collectd.conf b/Monitoring/collectd/supervisor.d/collectd.conf new file mode 100644 index 00000000..a6334d70 --- /dev/null +++ b/Monitoring/collectd/supervisor.d/collectd.conf @@ -0,0 +1,3 @@ +[program:collectd] +command=collectd -C /etc/collectd.conf -f +autorestart=true  | 
