|
25 | 25 | handlers ['slack', 'pagerduty']
|
26 | 26 | subscribers ['all']
|
27 | 27 | interval 30
|
28 |
| - additional(notification: 'There is a high number of procs running', occurences: 3) |
| 28 | + additional(notification: 'There is a high number of procs running', occurrences: 3) |
29 | 29 | end
|
30 | 30 |
|
31 | 31 | sensu_check 'check_ntpd_proc' do
|
32 | 32 | command "/opt/sensu/embedded/bin/ruby /etc/sensu/plugins/check-procs.rb -p '/usr/sbin/ntpd -p /var/run/ntpd.pid'"
|
33 | 33 | handlers ['slack', 'pagerduty']
|
34 | 34 | subscribers ['all']
|
35 | 35 | interval 30
|
36 |
| - additional(notification: 'ntpd is not running', occurences: 3) |
| 36 | + additional(notification: 'ntpd is not running', occurrences: 3) |
37 | 37 | end
|
38 | 38 |
|
39 | 39 | sensu_check 'check_collectd_proc' do
|
40 | 40 | command "/opt/sensu/embedded/bin/ruby /etc/sensu/plugins/check-procs.rb -p 'collectd -C /etc/collectd/collectd.conf'"
|
41 | 41 | handlers ['slack', 'pagerduty']
|
42 | 42 | subscribers ['all']
|
43 | 43 | interval 30
|
44 |
| - additional(notification: 'collectd is not running', occurences: 3) |
| 44 | + additional(notification: 'collectd is not running', occurrences: 3) |
45 | 45 | end
|
46 | 46 |
|
47 | 47 | sensu_check 'check_ssh' do
|
48 | 48 | command '/usr/lib/nagios/plugins/check_ssh localhost'
|
49 | 49 | handlers ['slack', 'pagerduty']
|
50 | 50 | subscribers ['all']
|
51 | 51 | interval 30
|
52 |
| - additional(notification: 'sshd is not running', occurences: 3) |
| 52 | + additional(notification: 'sshd is not running', occurrences: 3) |
53 | 53 | end
|
54 | 54 |
|
55 | 55 | sensu_check 'check_apt' do
|
56 | 56 | command '/usr/lib/nagios/plugins/check_apt'
|
57 | 57 | handlers ['slack', 'pagerduty']
|
58 | 58 | subscribers ['all']
|
59 | 59 | interval 60
|
60 |
| - additional(notification: 'There are pending package upgrades', occurences: 3) |
| 60 | + additional(notification: 'There are pending package upgrades', occurrences: 3) |
61 | 61 | end
|
62 | 62 |
|
63 | 63 | sensu_check 'check_ntp_time' do
|
64 | 64 | command '/usr/lib/nagios/plugins/check_ntp_time -H localhost'
|
65 | 65 | handlers ['slack', 'pagerduty']
|
66 | 66 | subscribers ['all']
|
67 | 67 | interval 120
|
68 |
| - additional(notification: 'NTP is out of sync', occurences: 3) |
| 68 | + additional(notification: 'NTP is out of sync', occurrences: 3) |
69 | 69 | end
|
70 | 70 |
|
71 | 71 | sensu_check 'check_load' do
|
72 | 72 | command "/usr/lib/nagios/plugins/check_load -w #{node['cpu']['total'] * 8}:#{node['cpu']['total'] * 5}:#{node['cpu']['total'] * 2} -c #{node['cpu']['total'] * 10}:#{node['cpu']['total'] * 8}:#{node['cpu']['total'] * 3}"
|
73 | 73 | handlers ['slack', 'pagerduty']
|
74 | 74 | subscribers ['all']
|
75 | 75 | interval 30
|
76 |
| - additional(notification: 'Load is high', occurences: 3) |
| 76 | + additional(notification: 'Load is high', occurrences: 3) |
77 | 77 | end
|
0 commit comments