1 | 1 | simandl | # Since the cpu stats lack support of multiprocessor machines, |
2 | | | # this is a little HotFix for users who want their CPU graphs |
3 | | | # to show values reaching above 1. Be sure that this is just a |
4 | | | # multiplier for the values stored in the CPU database. And |
5 | | | # only effects the diagrams, not the values stored! |
6 | | | # |
7 | | | NUMCPU="1" |
8 | | | |
9 | | | # This modifies the output format of the CPU graphs. |
10 | | | # If you prefer a percentage legend over the absoulte, just set |
11 | | | # CPUGRAPH="percent" |
12 | | | # otherwhise set it to what ever you like. |
13 | | | # |
14 | | | CPUGRAPH="1" |
15 | | | |
16 | | | # Configure which module sections to run locally |
17 | | | # |
18 | | | # Example: |
19 | | | # SECTIONS="cpu load proc mem users int uptime" |
20 | | | SECTIONS="cpu load proc mem users int uptime" |
21 | | | |
22 | | | |
23 | | | # Configure SNMP monitored hosts |
24 | | | # |
25 | | | # HOST=SNMP:<host>:<community>,<description> |
26 | | | # |
27 | | | # Example: |
28 | | | # HOST=SNMP:somehost:public,Router |
29 | | | |
30 | | | # IRQ description |
31 | | | # |
32 | | | # IRQ=<number>,<short description> |
33 | | | # |
34 | | | # The short description will be trimmed to 5 chars in the diagrams. |
35 | | | # |
36 | | | # example (for an IBM compatible PC): |
37 | | | # |
38 | | | # IRQ=0,timer |
39 | | | # IRQ=1,kbd |
40 | | | # IRQ=2,casc |
41 | | | # IRQ=3,ser1 |
42 | | | # IRQ=4,ser2 |
43 | | | # IRQ=5,? |
44 | | | # IRQ=6,fdd |
45 | | | # IRQ=7,lpt |
46 | | | # IRQ=8,rtc |
47 | | | # IRQ=9,? |
48 | | | # IRQ=10,? |
49 | | | # IRQ=11,? |
50 | | | # IRQ=12,? |
51 | | | # IRQ=13,CoPro |
52 | | | # IRQ=14,? |
53 | | | # IRQ=15,? |
54 | | | # |
55 | | | IRQ=0,timer |
56 | | | IRQ=1,kbd |
57 | | | IRQ=2,casc |
58 | | | IRQ=3,ser1 |
59 | | | IRQ=4,ser2 |
60 | | | IRQ=5, |
61 | | | IRQ=6,fdd |
62 | | | IRQ=7,lpt |
63 | | | IRQ=8,rtc |
64 | | | IRQ=9, |
65 | | | IRQ=10, |
66 | | | IRQ=11, |
67 | | | IRQ=12, |
68 | | | IRQ=13,CoPro |
69 | | | IRQ=14, |
70 | | | IRQ=15, |
71 | | | |