From 8b5b9238a2efbc722b7c147707dc453aefe69f04 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Tue, 15 Jun 2010 14:03:40 +0200 Subject: [PATCH] Add example configuration file. --- collection.conf | 176 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 176 insertions(+) create mode 100644 collection.conf diff --git a/collection.conf b/collection.conf new file mode 100644 index 0000000..5375a26 --- /dev/null +++ b/collection.conf @@ -0,0 +1,176 @@ + + Host "/any/" + Plugin "cpu" + PluginInstance "/any/" + Type "cpu" + TypeInstance "/all/" + + Title "CPU utilization" + VerticalLabel "Jiffies" + + + TypeInstance "idle" + DSName "value" + Legend "Idle " + Color "e8e8e8" + Area true + Stack true + #Format "%lf" + + + TypeInstance "nice" + DSName "value" + Legend "Nice " + Color "00e000" + Area true + Stack true + #Format "%lf" + + + TypeInstance "user" + DSName "value" + Legend "User " + Color "0000ff" + Area true + Stack true + #Format "%lf" + + + TypeInstance "wait" + DSName "value" + Legend "Wait-IO" + Color "ffb000" + Area true + Stack true + #Format "%lf" + + + TypeInstance "system" + DSName "value" + Legend "System " + Color "ff0000" + Area true + Stack true + #Format "%lf" + + + TypeInstance "softirq" + DSName "value" + Legend "SoftIRQ" + Color "ff00ff" + Area true + Stack true + #Format "%lf" + + + TypeInstance "interrupt" + DSName "value" + Legend "IRQ " + Color "a000a0" + Area true + Stack true + #Format "%lf" + + + TypeInstance "steal" + DSName "value" + Legend "Steal " + Color "000000" + Area true + Stack true + #Format "%lf" + + + + + Host "/any/" + Plugin "disk" + PluginInstance "/any/" + Type "disk_octets" + TypeInstance "" + + Title "Disk octets" + + + DSName "read" + Legend "Read " + Color "0000ff" + + + DSName "write" + Legend "Write" + Color "00bf00" + + + + + Host "/any/" + Plugin "memory" + PluginInstance "" + Type "memory" + TypeInstance "/all/" + + Title "Memory utilization" + VerticalLabel "Bytes" + + + + Host "/any/" + Plugin "swap" + PluginInstance "" + Type "swap" + TypeInstance "/all/" + + Title "Swap utilization" + VerticalLabel "Bytes" + + + + Host "/any/" + Plugin "processes" + PluginInstance "" + Type "ps_state" + TypeInstance "/all/" + + Title "Processes" + VerticalLabel "Processes" + + + TypeInstance "paging" + DSName "value" + Legend "Paging " + Color "ffb000" + + + TypeInstance "blocked" + DSName "value" + Legend "Blocked " + Color "ff00ff" + + + TypeInstance "zombies" + DSName "value" + Legend "Zombies " + Color "ff0000" + + + TypeInstance "stopped" + DSName "value" + Legend "Stopped " + Color "a000a0" + + + TypeInstance "running" + DSName "value" + Legend "Running " + Color "00e000" + + + TypeInstance "sleeping" + DSName "value" + Legend "Sleeping" + Color "0000ff" + + + + -- 2.11.0