2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# File 'manifests/service/disk.pp', line 2
class monitoring::service::disk {
monitoring::service { 'disk':
service_description => 'DISK',
servicegroups => 'system,important_email',
check_command => 'check_nrpe!check_disk',
contact_groups => 'admins,linux_admins',
sms_contact_groups => 'linux_admin_sms',
}
monitoring::servicedependency { 'disk':
dependent_service_description => 'DISK',
service_description => 'NRPE',
}
nrpe::plugin { 'disk':
plugin => 'main',
sudo => true,
check_command => 'check_disk',
command_args => '-w 20% -c 10% --all',
}
}
|