mirror of https://github.com/zulip/zulip.git
puppet: Remove rabbitmq consumer checks based on check_procs
These have been superceded by checks for the existance of consumers of the relevant queues. (imported from commit 68a0e79734366411e39e9e4346b5a61bdd34144b)
This commit is contained in:
parent
dc082cd96d
commit
2547e0768f
|
@ -101,21 +101,6 @@ define command{
|
|||
command_line /usr/lib/nagios/plugins/check_by_ssh -p $ARG1$ -l humbug -t 30 -i /var/lib/nagios/.ssh/id_rsa -H $HOSTADDRESS$ -C '/usr/lib/nagios/plugins/check_postgres.pl --dbname=humbug --dbuser=humbug --action $ARG2$ --warning="$ARG3$" --critical="$ARG4$"'
|
||||
}
|
||||
|
||||
define command{
|
||||
command_name check_process_user_activity
|
||||
command_line /usr/lib/nagios/plugins/check_by_ssh -p $ARG1$ -l nagios -t 30 -i /var/lib/nagios/.ssh/id_rsa -H $HOSTADDRESS$ -C '/usr/lib/nagios/plugins/check_procs -u humbug -c 1:1 -a "manage.py process_user_activity"'
|
||||
}
|
||||
|
||||
define command{
|
||||
command_name check_process_mailchimp_signups
|
||||
command_line /usr/lib/nagios/plugins/check_by_ssh -p $ARG1$ -l nagios -t 30 -i /var/lib/nagios/.ssh/id_rsa -H $HOSTADDRESS$ -C '/usr/lib/nagios/plugins/check_procs -u humbug -c 1:1 -a "manage.py process_signups"'
|
||||
}
|
||||
|
||||
define command{
|
||||
command_name check_send_confirmation_emails
|
||||
command_line /usr/lib/nagios/plugins/check_by_ssh -p $ARG1$ -l nagios -t 30 -i /var/lib/nagios/.ssh/id_rsa -H $HOSTADDRESS$ -C '/usr/lib/nagios/plugins/check_procs -u humbug -c 1:1 -a "manage.py send_confirmation_emails"'
|
||||
}
|
||||
|
||||
define command{
|
||||
command_name check_sync_public_streams
|
||||
command_line /usr/lib/nagios/plugins/check_by_ssh -p $ARG1$ -l nagios -t 30 -i /var/lib/nagios/.ssh/id_rsa -H $HOSTADDRESS$ -C '/usr/lib/nagios/plugins/check_procs -u humbug -c 1:1 -a "/home/humbug/humbug/bots/sync-public-streams"'
|
||||
|
|
|
@ -215,35 +215,6 @@ define service {
|
|||
contact_groups admins
|
||||
}
|
||||
|
||||
define service {
|
||||
use generic-service
|
||||
service_description process_user_activity bot
|
||||
check_command check_process_user_activity!22
|
||||
hostgroup_name frontends
|
||||
# Activity isn't lost if this isn't running, but it is
|
||||
# critical that it arrive to avoid falsely telling MIT folks
|
||||
# their mirrors are down.
|
||||
# This service is also responsible for active/idle
|
||||
# status.
|
||||
contact_groups page_admins
|
||||
}
|
||||
|
||||
define service {
|
||||
use generic-service
|
||||
service_description sync signups from zulip to mailchimp
|
||||
check_command check_process_mailchimp_signups!22
|
||||
hostgroup_name frontends
|
||||
contact_groups admins
|
||||
}
|
||||
|
||||
define service {
|
||||
use generic-service
|
||||
service_description send confirmation emails
|
||||
check_command check_send_confirmation_emails!22
|
||||
hostgroup_name frontends
|
||||
contact_groups admins
|
||||
}
|
||||
|
||||
define service {
|
||||
use generic-service
|
||||
service_description zmirror subscriptons syncing
|
||||
|
|
Loading…
Reference in New Issue