Skip to content
This repository was archived by the owner on Jul 11, 2020. It is now read-only.

Commit 437aba9

Browse files
committedAug 21, 2014
fix typo in sensu checks
1 parent a9c5cb4 commit 437aba9

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed
 

‎Berksfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ GRAPH
276276
nginx (>= 0.0.0)
277277
rubygems (>= 0.0.0)
278278
rubygems-ruby (0.0.1)
279-
rubygems-sensu (0.0.77)
279+
rubygems-sensu (0.0.78)
280280
chef-vault (>= 0.0.0)
281281
sensu (= 1.0.0)
282282
rubygems-ssh (0.0.4)

‎cookbooks/rubygems-sensu/metadata.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name 'rubygems-sensu'
22
maintainer 'RubyGems.org ops team'
33

4-
version '0.0.77'
4+
version '0.0.78'
55

66
depends 'chef-vault'
77
depends 'sensu', '1.0.0'

‎cookbooks/rubygems-sensu/recipes/app.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
handlers ['slack', 'pagerduty']
99
subscribers ['app']
1010
interval 30
11-
additional(notification: "[#{node.chef_environment}] nginx is not returning 200 OK on port 9000", occurences: 3)
11+
additional(notification: "[#{node.chef_environment}] nginx is not returning 200 OK on port 9000", occurrences: 3)
1212
end
1313

1414
sensu_check 'check_unicorn_http' do
1515
command '/usr/lib/nagios/plugins/check_http -I 127.0.0.1 -p 3000 -t 5 -w 1 -c 2'
1616
handlers ['slack', 'pagerduty']
1717
subscribers ['app']
1818
interval 30
19-
additional(notification: "[#{node.chef_environment}] unicorn is not returning 200 OK on port 3000", occurences: 3)
19+
additional(notification: "[#{node.chef_environment}] unicorn is not returning 200 OK on port 3000", occurrences: 3)
2020
end
2121

2222
sensu_check 'check_unicorn_proc' do
2323
command "/opt/sensu/embedded/bin/ruby /etc/sensu/plugins/check-procs.rb -p 'unicorn master'"
2424
handlers ['slack', 'pagerduty']
2525
subscribers ['app']
2626
interval 30
27-
additional(notification: "[#{node.chef_environment}] unicorn is not running", occurences: 3)
27+
additional(notification: "[#{node.chef_environment}] unicorn is not running", occurrences: 3)
2828
end

‎cookbooks/rubygems-sensu/recipes/balancer.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
handlers ['slack', 'pagerduty']
99
subscribers ['balancer']
1010
interval 30
11-
additional(notification: "[#{node.chef_environment}] nginx is not returning 200 OK on port 80", occurences: 3)
11+
additional(notification: "[#{node.chef_environment}] nginx is not returning 200 OK on port 80", occurrences: 3)
1212
end
1313

1414
sensu_check 'check_nginx_https' do
1515
command '/usr/lib/nagios/plugins/check_http -I 127.0.0.1 --ssl -t 5 -w 1 -c 2'
1616
handlers ['slack', 'pagerduty']
1717
subscribers ['balancer']
1818
interval 30
19-
additional(notification: "[#{node.chef_environment}] nginx is not returning 200 OK on port 443", occurences: 3)
19+
additional(notification: "[#{node.chef_environment}] nginx is not returning 200 OK on port 443", occurrences: 3)
2020
end
2121

2222
sensu_check 'check_nginx_cert_expiration' do
2323
command '/usr/lib/nagios/plugins/check_http -I 127.0.0.1 --ssl -C 30,14'
2424
handlers ['slack', 'pagerduty']
2525
subscribers ['balancer']
2626
interval 30
27-
additional(occurences: 3)
27+
additional(occurrences: 3)
2828
end

‎cookbooks/rubygems-sensu/recipes/base.rb

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,53 +25,53 @@
2525
handlers ['slack', 'pagerduty']
2626
subscribers ['all']
2727
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)
2929
end
3030

3131
sensu_check 'check_ntpd_proc' do
3232
command "/opt/sensu/embedded/bin/ruby /etc/sensu/plugins/check-procs.rb -p '/usr/sbin/ntpd -p /var/run/ntpd.pid'"
3333
handlers ['slack', 'pagerduty']
3434
subscribers ['all']
3535
interval 30
36-
additional(notification: 'ntpd is not running', occurences: 3)
36+
additional(notification: 'ntpd is not running', occurrences: 3)
3737
end
3838

3939
sensu_check 'check_collectd_proc' do
4040
command "/opt/sensu/embedded/bin/ruby /etc/sensu/plugins/check-procs.rb -p 'collectd -C /etc/collectd/collectd.conf'"
4141
handlers ['slack', 'pagerduty']
4242
subscribers ['all']
4343
interval 30
44-
additional(notification: 'collectd is not running', occurences: 3)
44+
additional(notification: 'collectd is not running', occurrences: 3)
4545
end
4646

4747
sensu_check 'check_ssh' do
4848
command '/usr/lib/nagios/plugins/check_ssh localhost'
4949
handlers ['slack', 'pagerduty']
5050
subscribers ['all']
5151
interval 30
52-
additional(notification: 'sshd is not running', occurences: 3)
52+
additional(notification: 'sshd is not running', occurrences: 3)
5353
end
5454

5555
sensu_check 'check_apt' do
5656
command '/usr/lib/nagios/plugins/check_apt'
5757
handlers ['slack', 'pagerduty']
5858
subscribers ['all']
5959
interval 60
60-
additional(notification: 'There are pending package upgrades', occurences: 3)
60+
additional(notification: 'There are pending package upgrades', occurrences: 3)
6161
end
6262

6363
sensu_check 'check_ntp_time' do
6464
command '/usr/lib/nagios/plugins/check_ntp_time -H localhost'
6565
handlers ['slack', 'pagerduty']
6666
subscribers ['all']
6767
interval 120
68-
additional(notification: 'NTP is out of sync', occurences: 3)
68+
additional(notification: 'NTP is out of sync', occurrences: 3)
6969
end
7070

7171
sensu_check 'check_load' do
7272
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}"
7373
handlers ['slack', 'pagerduty']
7474
subscribers ['all']
7575
interval 30
76-
additional(notification: 'Load is high', occurences: 3)
76+
additional(notification: 'Load is high', occurrences: 3)
7777
end

‎cookbooks/rubygems-sensu/recipes/database.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
handlers ['slack', 'pagerduty']
99
subscribers ['database']
1010
interval 30
11-
additional(notification: "[#{node.chef_environment}] postgres is not running", occurences: 3)
11+
additional(notification: "[#{node.chef_environment}] postgres is not running", occurrences: 3)
1212
end
1313

1414
sensu_check 'check_postgres_connection' do
1515
command "perl /etc/sensu/plugins/check_postgres.pl --action connection -db rubygems_#{node.chef_environment}"
1616
handlers ['slack', 'pagerduty']
1717
subscribers ['database']
1818
interval 30
19-
additional(occurences: 3)
19+
additional(occurrences: 3)
2020
end
2121

2222
sensu_check 'check_postgres_backends' do
2323
command "perl /etc/sensu/plugins/check_postgres.pl --action backends -db rubygems_#{node.chef_environment}"
2424
handlers ['slack', 'pagerduty']
2525
subscribers ['database']
2626
interval 30
27-
additional(occurences: 3)
27+
additional(occurrences: 3)
2828
end

‎cookbooks/rubygems-sensu/recipes/nginx.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
handlers ['slack', 'pagerduty']
99
subscribers ['balancer', 'app']
1010
interval 30
11-
additional(notification: "[#{node.chef_environment}] nginx is not running", occurences: 3)
11+
additional(notification: "[#{node.chef_environment}] nginx is not running", occurrences: 3)
1212
end

0 commit comments

Comments
 (0)
This repository has been archived.