share/collection.conf: Add a couple new graphs.
[collection4.git] / share / 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 "%6.2lf"
19   </DEF>
20   <DEF>
21     TypeInstance "nice"
22     DSName "value"
23     Legend "Nice   "
24     Color "00e000"
25     Area true
26     Stack true
27     Format "%6.2lf"
28   </DEF>
29   <DEF>
30     TypeInstance "user"
31     DSName "value"
32     Legend "User   "
33     Color "0000ff"
34     Area true
35     Stack true
36     Format "%6.2lf"
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 "%6.2lf"
46   </DEF>
47   <DEF>
48     TypeInstance "system"
49     DSName "value"
50     Legend "System "
51     Color "ff0000"
52     Area true
53     Stack true
54     Format "%6.2lf"
55   </DEF>
56   <DEF>
57     TypeInstance "softirq"
58     DSName "value"
59     Legend "SoftIRQ"
60     Color "ff00ff"
61     Area true
62     Stack true
63     Format "%6.2lf"
64   </DEF>
65   <DEF>
66     TypeInstance "interrupt"
67     DSName "value"
68     Legend "IRQ    "
69     Color "a000a0"
70     Area true
71     Stack true
72     Format "%6.2lf"
73   </DEF>
74   <DEF>
75     TypeInstance "steal"
76     DSName "value"
77     Legend "Steal  "
78     Color "000000"
79     Area true
80     Stack true
81     Format "%6.2lf"
82   </DEF>
83 </Graph>
84
85 <Graph>
86   Host "/any/"
87   Plugin "df"
88   PluginInstance "/any/"
89   Type "df_complex"
90   TypeInstance "/all/"
91
92   Title "Diskspace"
93   VerticalLabel "Bytes"
94   ShowZero false
95
96   <DEF>
97     TypeInstance "reserved"
98     DSName "value"
99     Legend "Reserved"
100     Color "ffb000"
101     Area true
102     Stack true
103     Format "%5.1lf%s"
104   </DEF>
105   <DEF>
106     TypeInstance "free"
107     DSName "value"
108     Legend "Free    "
109     Color "00bf00"
110     Area true
111     Stack true
112     Format "%5.1lf%s"
113   </DEF>
114   <DEF>
115     TypeInstance "used"
116     DSName "value"
117     Legend "Used    "
118     Color "ff0000"
119     Area true
120     Stack true
121     Format "%5.1lf%s"
122   </DEF>
123 </Graph>
124
125 <Graph>
126   Host "/any/"
127   Plugin "df"
128   PluginInstance "/any/"
129   Type "df_inodes"
130   TypeInstance "/all/"
131
132   Title "Diskspace (Inodes)"
133   VerticalLabel "Inodes"
134   ShowZero true
135
136   <DEF>
137     TypeInstance "reserved"
138     DSName "value"
139     Legend "Reserved"
140     Color "ffb000"
141     Area true
142     Stack true
143     Format "%5.1lf%s"
144   </DEF>
145   <DEF>
146     TypeInstance "free"
147     DSName "value"
148     Legend "Free    "
149     Color "00bf00"
150     Area true
151     Stack true
152     Format "%5.1lf%s"
153   </DEF>
154   <DEF>
155     TypeInstance "used"
156     DSName "value"
157     Legend "Used    "
158     Color "ff0000"
159     Area true
160     Stack true
161     Format "%5.1lf%s"
162   </DEF>
163 </Graph>
164
165 <Graph>
166   Host "/any/"
167   Plugin "df"
168   PluginInstance ""
169   Type "df"
170   TypeInstance "/any/"
171
172   Title "Diskspace (legacy)"
173   VerticalLabel "Bytes"
174   ShowZero true
175
176   <DEF>
177     DSName "used"
178     Legend "Used"
179     Color "ff0000"
180     Area true
181     Stack true
182     Format "%5.1lf%s"
183   </DEF>
184   <DEF>
185     DSName "free"
186     Legend "Free"
187     Color "00bf00"
188     Area true
189     Stack true
190     Format "%5.1lf%s"
191   </DEF>
192 </Graph>
193
194 <Graph>
195   Host "/any/"
196   Plugin "disk"
197   PluginInstance "/any/"
198   Type "disk_merged"
199   TypeInstance ""
200
201   Title "Disk merged operations"
202
203   <DEF>
204     DSName "read"
205     Legend "Read "
206     Color "0000ff"
207   </DEF>
208   <DEF>
209     DSName "write"
210     Legend "Write"
211     Color "00bf00"
212   </DEF>
213 </Graph>
214
215 <Graph>
216   Host "/any/"
217   Plugin "disk"
218   PluginInstance "/any/"
219   Type "disk_octets"
220   TypeInstance ""
221
222   Title "Disk octets"
223
224   <DEF>
225     DSName "read"
226     Legend "Read "
227     Color "0000ff"
228     Format "%5.1lf%s"
229   </DEF>
230   <DEF>
231     DSName "write"
232     Legend "Write"
233     Color "00bf00"
234     Format "%5.1lf%s"
235   </DEF>
236 </Graph>
237
238 <Graph>
239   Host "/any/"
240   Plugin "disk"
241   PluginInstance "/any/"
242   Type "disk_ops"
243   TypeInstance ""
244
245   Title "Disk operations"
246
247   <DEF>
248     DSName "read"
249     Legend "Read "
250     Color "0000ff"
251   </DEF>
252   <DEF>
253     DSName "write"
254     Legend "Write"
255     Color "00bf00"
256   </DEF>
257 </Graph>
258
259 <Graph>
260   Host "/any/"
261   Plugin "disk"
262   PluginInstance "/any/"
263   Type "disk_time"
264   TypeInstance ""
265
266   Title "Disk time per op"
267
268   <DEF>
269     DSName "read"
270     Legend "Read "
271     Color "0000ff"
272   </DEF>
273   <DEF>
274     DSName "write"
275     Legend "Write"
276     Color "00bf00"
277   </DEF>
278 </Graph>
279
280 <Graph>
281   Host "/any/"
282   Plugin "processes"
283   PluginInstance ""
284   Type "fork_rate"
285   TypeInstance ""
286
287   Title "Fork rate"
288   VerticalLabel "Forks/s"
289
290   <DEF>
291     DSName "value"
292     Legend "Fork rate"
293     Color "0000ff"
294   </DEF>
295 </Graph>
296
297 <Graph>
298   Host "/any/"
299   Plugin "interface"
300   PluginInstance "/any/"
301   Type "if_errors"
302   TypeInstance "/any/"
303
304   Title "Interface errors"
305   VerticalLabel "Errors/s"
306
307   <DEF>
308     DSName "rx"
309     Legend "RX"
310     Color "0000ff"
311     Format "%5.1lf"
312   </DEF>
313   <DEF>
314     DSName "tx"
315     Legend "TX"
316     Color "00bf00"
317     Format "%5.1lf"
318   </DEF>
319 </Graph>
320
321 <Graph>
322   Host "/any/"
323   Plugin "/any/"
324   PluginInstance "/any/"
325   Type "if_octets"
326   TypeInstance "/any/"
327
328   Title "Interface octets"
329   VerticalLabel "Bytes/s"
330
331   <DEF>
332     DSName "rx"
333     Legend "RX"
334     Color "0000ff"
335     Format "%5.1lf%s"
336   </DEF>
337   <DEF>
338     DSName "tx"
339     Legend "TX"
340     Color "00bf00"
341     Format "%5.1lf%s"
342   </DEF>
343 </Graph>
344
345 <Graph>
346   Host "/any/"
347   Plugin "interface"
348   PluginInstance "/any/"
349   Type "if_packets"
350   TypeInstance "/any/"
351
352   Title "Interface packets"
353   VerticalLabel "Packets/s"
354
355   <DEF>
356     DSName "rx"
357     Legend "RX"
358     Color "0000ff"
359   </DEF>
360   <DEF>
361     DSName "tx"
362     Legend "TX"
363     Color "00bf00"
364   </DEF>
365 </Graph>
366
367 <Graph>
368   Host "/any/"
369   Plugin "GenericJMX"
370   PluginInstance "/any/"
371   Type "jmx_memory"
372   TypeInstance "/all/"
373
374   Title "JMX memory"
375
376   <DEF>
377     TypeInstance "max"
378     DSName "value"
379     Legend "Max      "
380     Color "00e000"
381     Format "%5.1lf%s"
382   </DEF>
383   <DEF>
384     TypeInstance "committed"
385     DSName "value"
386     Legend "Committed"
387     Color "0000ff"
388     Format "%5.1lf%s"
389   </DEF>
390   <DEF>
391     TypeInstance "init"
392     DSName "value"
393     Legend "Init     "
394     Color "ffb000"
395     Format "%5.1lf%s"
396   </DEF>
397   <DEF>
398     TypeInstance "used"
399     DSName "value"
400     Legend "Used     "
401     Color "ff0000"
402     Format "%5.1lf%s"
403   </DEF>
404 </Graph>
405
406 <Graph>
407   Host "/any/"
408   Plugin "load"
409   PluginInstance ""
410   Type "load"
411   TypeInstance ""
412
413   Title "System load"
414
415   <DEF>
416     DSName "longterm"
417     Legend "15m"
418     Color "ff0000"
419   </DEF>
420   <DEF>
421     DSName "midterm"
422     Legend " 5m"
423     Color "0000ff"
424   </DEF>
425   <DEF>
426     DSName "shortterm"
427     Legend " 1m "
428     Color "00e000"
429   </DEF>
430 </Graph>
431
432 <Graph>
433   Host "/any/"
434   Plugin "memory"
435   PluginInstance ""
436   Type "memory"
437   TypeInstance "/all/"
438
439   Title "Memory utilization"
440   VerticalLabel "Bytes"
441   ShowZero true
442
443   <DEF>
444     TypeInstance "free"
445     DSName "value"
446     Legend "Free    "
447     Color "00e000"
448     Area true
449     Stack true
450     Format "%5.1lf%s"
451   </DEF>
452   <DEF>
453     TypeInstance "cached"
454     DSName "value"
455     Legend "Cached  "
456     Color "0000ff"
457     Area true
458     Stack true
459     Format "%5.1lf%s"
460   </DEF>
461   <DEF>
462     TypeInstance "buffered"
463     DSName "value"
464     Legend "Buffered"
465     Color "ffb000"
466     Area true
467     Stack true
468     Format "%5.1lf%s"
469   </DEF>
470   <DEF>
471     TypeInstance "locked"
472     DSName "value"
473     Legend "Locked  "
474     Color "ff00ff"
475     Area true
476     Stack true
477     Format "%5.1lf%s"
478   </DEF>
479   <DEF>
480     TypeInstance "used"
481     DSName "value"
482     Legend "Used    "
483     Color "ff0000"
484     Area true
485     Stack true
486     Format "%5.1lf%s"
487   </DEF>
488 </Graph>
489
490 <Graph>
491   Host "/any/"
492   Plugin "processes"
493   PluginInstance ""
494   Type "ps_state"
495   TypeInstance "/all/"
496
497   Title "Processes"
498   VerticalLabel "Processes"
499
500   <DEF>
501     TypeInstance "paging"
502     DSName "value"
503     Legend "Paging  "
504     Color "ffb000"
505   </DEF>
506   <DEF>
507     TypeInstance "blocked"
508     DSName "value"
509     Legend "Blocked "
510     Color "ff00ff"
511   </DEF>
512   <DEF>
513     TypeInstance "zombies"
514     DSName "value"
515     Legend "Zombies "
516     Color "ff0000"
517   </DEF>
518   <DEF>
519     TypeInstance "stopped"
520     DSName "value"
521     Legend "Stopped "
522     Color "a000a0"
523   </DEF>
524   <DEF>
525     TypeInstance "running"
526     DSName "value"
527     Legend "Running "
528     Color "00e000"
529   </DEF>
530   <DEF>
531     TypeInstance "sleeping"
532     DSName "value"
533     Legend "Sleeping"
534     Color "0000ff"
535   </DEF>
536 </Graph>
537
538 <Graph>
539   Host "/any/"
540   Plugin "sensors"
541   PluginInstance "/any/"
542   Type "temperature"
543   TypeInstance "/any/"
544
545   Title "Temperature"
546   VerticalLabel "deg Celsius"
547
548   <DEF>
549     DSName "value"
550     Legend "Temperature"
551     Color "0000ff"
552   </DEF>
553 </Graph>
554
555 <Graph>
556   Host "/any/"
557   Plugin "swap"
558   PluginInstance ""
559   Type "swap"
560   TypeInstance "/all/"
561
562   Title "Swap utilization"
563   VerticalLabel "Bytes"
564
565   <DEF>
566     TypeInstance "free"
567     DSName "value"
568     Legend "Free  "
569     Color "00e000"
570     Area true
571     Stack true
572     Format "%5.1lf%s"
573   </DEF>
574   <DEF>
575     TypeInstance "cached"
576     DSName "value"
577     Legend "Cached"
578     Color "ffb000"
579     Area true
580     Stack true
581     Format "%5.1lf%s"
582   </DEF>
583   <DEF>
584     TypeInstance "used"
585     DSName "value"
586     Legend "Used  "
587     Color "ff0000"
588     Area true
589     Stack true
590     Format "%5.1lf%s"
591   </DEF>
592 </Graph>
593
594 <Graph>
595   Host "/any/"
596   Plugin "swap"
597   PluginInstance ""
598   Type "swap_io"
599   TypeInstance "/all/"
600
601   Title "Swap I/O"
602   VerticalLabel "Pages/s"
603
604   <DEF>
605     TypeInstance "in"
606     DSName "value"
607     Legend "In "
608     Color "0000ff"
609     Format "%5.1lf"
610   </DEF>
611   <DEF>
612     TypeInstance "out"
613     DSName "value"
614     Legend "Out"
615     Color "00bf00"
616     Format "%5.1lf"
617   </DEF>
618 </Graph>
619
620 <Graph>
621   Host "/any/"
622   Plugin "users"
623   PluginInstance ""
624   Type "users"
625   TypeInstance ""
626
627   Title "Users"
628   VerticalLabel "Users"
629
630   <DEF>
631     DSName "users"
632     Legend "Users"
633     Color "0000ff"
634   </DEF>
635 </Graph>
636
637 <Graph>
638   Host "/any/"
639   Plugin "terminal_services"
640   PluginInstance ""
641   Type "users"
642   TypeInstance "/all/"
643
644   Title "Users (Terminal Services)"
645   VerticalLabel "Users"
646
647   <DEF>
648     TypeInstance "active"
649     DSName "users"
650     Legend "Active  "
651     Color "ff0000"
652   </DEF>
653   <DEF>
654     TypeInstance "inactive"
655     DSName "users"
656     Legend "Inactive"
657     Color "0000ff"
658   </DEF>
659 </Graph>
660
661 <Graph>
662   Host "/any/"
663   Plugin "/any/"
664   PluginInstance "/any/"
665   Type "current"
666   TypeInstance "/any/"
667
668   Title "Current"
669   VerticalLabel "Amperes"
670
671   <DEF>
672     DSName "value"
673     Legend "Current"
674     Color "0000ff"
675   </DEF>
676 </Graph>
677
678 <Graph>
679   Host "/any/"
680   Plugin "/any/"
681   PluginInstance "/any/"
682   Type "voltage"
683   TypeInstance "/any/"
684
685   Title "Voltage"
686   VerticalLabel "Volts"
687
688   <DEF>
689     DSName "value"
690     Legend "Voltage"
691     Color "0000ff"
692   </DEF>
693 </Graph>