7 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
$host = {
'Description' => 'Irgendeine Beschreibung',
'MailCounter' => 3,
'History' => 14,
'Hostname' => 'suselinux',
'Interval' => 10,
'DataVolume' => 200,
'Address' => '192.168.0.3',
'CommKey' => '8f23hq8ofhoiajsv80hj0wg23049hg0',
'MailTimer' => 1800,
'Service' => 43610,
'Monitor' => 'on',
'Threshold' => {
'DiskStatsSum' => {
'Bytes' => {
'Limit' => 1,
'MailGroup' => 'dba'
}
},
'DiskUsage' => {
'/dev/hda3' => {
'UsagePro' => {
'Limit' => 1,
'MailGroup' => 'dba'
}
},
'/dev/hda4' => {
'Usage' => {
'Limit' => 1,
'MailGroup' => 'dba'
}
}
},
'ProcStats' => {
'Total' => {
'Limit' => 1,
'MailGroup' => 'dba'
},
'New' => {
'Limit' => 200,
'MailGroup' => 'none'
}
},
'NetStats' => {
'TxBytes' => {
'Limit' => 200,
'MailGroup' => 'dba'
}
}
},
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
History;14
MailCounter;3
Interval;10
Hostname;suselinux
DataVolume;200
Address;192.168.0.3
MailTimer;1800
CommKey;8f23hq8ofhoiajsv80hj0wg23049hg0
Service;43610
Monitor;on
Description;Irgendeine Beschreibung
DiskUsage;/dev/hda4;Usage;1;dba
DiskUsage;/dev/hda3;UsagePro;1;dba
Threshold;DiskStatsSum;Bytes;1;dba
Threshold;ProcStats;New;200;none
Threshold;ProcStats;Total;1;dba
Threshold;NetStats;TxBytes;200;dba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[Global]
History = 14
MailCounter = 3
Interval = 10
Hostname = suselinux
DataVolume = 200
Address = 192.168.0.3
MailTimer = 1800
CommKey = 8f23hq8ofhoiajsv80hj0wg23049hg0
Service = 43610
Monitor = on
Description = Irgendeine Beschreibung
[DiskUsage]
/dev/hda4 = Usage;1;dba
/dev/hda3 = UsagePro;1;dba
[Thresholds]
DiskStatsSum = Bytes;1;dba
ProcStats = New;200;none
ProcStats = Total;1;dba
NetStats = TxBytes;200;dba
7 Einträge, 1 Seite |