Add example configuration file.
[collection4.git] / collection.conf
1 <Graph>
2   Host "/any/"
3   Plugin "cpu"
4   PluginInstance "/any/"
5   Type "cpu"
6   TypeInstance "/all/"
7
8   Title "CPU utilization"
9   VerticalLabel "Jiffies"
10
11   <DEF>
12     TypeInstance "idle"
13     DSName "value"
14     Legend "Idle   "
15     Color "e8e8e8"
16     Area true
17     Stack true
18     #Format "%lf"
19   </DEF>
20   <DEF>
21     TypeInstance "nice"
22     DSName "value"
23     Legend "Nice   "
24     Color "00e000"
25     Area true
26     Stack true
27     #Format "%lf"
28   </DEF>
29   <DEF>
30     TypeInstance "user"
31     DSName "value"
32     Legend "User   "
33     Color "0000ff"
34     Area true
35     Stack true
36     #Format "%lf"
37   </DEF>
38   <DEF>
39     TypeInstance "wait"
40     DSName "value"
41     Legend "Wait-IO"
42     Color "ffb000"
43     Area true
44     Stack true
45     #Format "%lf"
46   </DEF>
47   <DEF>
48     TypeInstance "system"
49     DSName "value"
50     Legend "System "
51     Color "ff0000"
52     Area true
53     Stack true
54     #Format "%lf"
55   </DEF>
56   <DEF>
57     TypeInstance "softirq"
58     DSName "value"
59     Legend "SoftIRQ"
60     Color "ff00ff"
61     Area true
62     Stack true
63     #Format "%lf"
64   </DEF>
65   <DEF>
66     TypeInstance "interrupt"
67     DSName "value"
68     Legend "IRQ    "
69     Color "a000a0"
70     Area true
71     Stack true
72     #Format "%lf"
73   </DEF>
74   <DEF>
75     TypeInstance "steal"
76     DSName "value"
77     Legend "Steal  "
78     Color "000000"
79     Area true
80     Stack true
81     #Format "%lf"
82   </DEF>
83 </Graph>
84
85 <Graph>
86   Host "/any/"
87   Plugin "disk"
88   PluginInstance "/any/"
89   Type "disk_octets"
90   TypeInstance ""
91
92   Title "Disk octets"
93
94   <DEF>
95     DSName "read"
96     Legend "Read "
97     Color "0000ff"
98   </DEF>
99   <DEF>
100     DSName "write"
101     Legend "Write"
102     Color "00bf00"
103   </DEF>
104 </Graph>
105
106 <Graph>
107   Host "/any/"
108   Plugin "memory"
109   PluginInstance ""
110   Type "memory"
111   TypeInstance "/all/"
112
113   Title "Memory utilization"
114   VerticalLabel "Bytes"
115 </Graph>
116
117 <Graph>
118   Host "/any/"
119   Plugin "swap"
120   PluginInstance ""
121   Type "swap"
122   TypeInstance "/all/"
123
124   Title "Swap utilization"
125   VerticalLabel "Bytes"
126 </Graph>
127
128 <Graph>
129   Host "/any/"
130   Plugin "processes"
131   PluginInstance ""
132   Type "ps_state"
133   TypeInstance "/all/"
134
135   Title "Processes"
136   VerticalLabel "Processes"
137
138   <DEF>
139     TypeInstance "paging"
140     DSName "value"
141     Legend "Paging  "
142     Color "ffb000"
143   </DEF>
144   <DEF>
145     TypeInstance "blocked"
146     DSName "value"
147     Legend "Blocked "
148     Color "ff00ff"
149   </DEF>
150   <DEF>
151     TypeInstance "zombies"
152     DSName "value"
153     Legend "Zombies "
154     Color "ff0000"
155   </DEF>
156   <DEF>
157     TypeInstance "stopped"
158     DSName "value"
159     Legend "Stopped "
160     Color "a000a0"
161   </DEF>
162   <DEF>
163     TypeInstance "running"
164     DSName "value"
165     Legend "Running "
166     Color "00e000"
167   </DEF>
168   <DEF>
169     TypeInstance "sleeping"
170     DSName "value"
171     Legend "Sleeping"
172     Color "0000ff"
173   </DEF>
174 </Graph>
175
176