From a8c8df48de14ce31e211aeed1fd92acffafeca14 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 6 Nov 2019 23:48:02 +0000 Subject: [PATCH] bugyou: retire service and all it's parts Signed-off-by: Kevin Fenzi --- inventory/group_vars/bugyou | 25 ------- inventory/group_vars/bugyou_stg | 25 ------- .../host_vars/bugyou01.phx2.fedoraproject.org | 14 ---- .../bugyou01.stg.phx2.fedoraproject.org | 13 ---- inventory/inventory | 9 --- master.yml | 1 - playbooks/groups/bugyou.yml | 71 ------------------- playbooks/manual/upgrade/bugyou.yml | 59 --------------- roles/bugyou/bugyou-master/tasks/main.yml | 30 -------- .../bugyou/bugyou-master/templates/bugyou.py | 15 ---- roles/bugyou/bugyou-plugins/tasks/main.yml | 37 ---------- .../templates/bugyou_plugins.cfg | 3 - .../templates/bugyou_services.cfg | 8 --- roles/nagios_client/tasks/main.yml | 12 ---- .../templates/check_fedmsg_consumers.cfg.j2 | 3 - .../check_fedmsg_hub_procs_bugyou.cfg.j2 | 1 - .../files/nagios/services/fedmsg.cfg | 27 ------- roles/nagios_server/files/nrpe/nrpe.cfg | 3 - 18 files changed, 356 deletions(-) delete mode 100644 inventory/group_vars/bugyou delete mode 100644 inventory/group_vars/bugyou_stg delete mode 100644 inventory/host_vars/bugyou01.phx2.fedoraproject.org delete mode 100644 inventory/host_vars/bugyou01.stg.phx2.fedoraproject.org delete mode 100644 playbooks/groups/bugyou.yml delete mode 100644 playbooks/manual/upgrade/bugyou.yml delete mode 100644 roles/bugyou/bugyou-master/tasks/main.yml delete mode 100644 roles/bugyou/bugyou-master/templates/bugyou.py delete mode 100644 roles/bugyou/bugyou-plugins/tasks/main.yml delete mode 100644 roles/bugyou/bugyou-plugins/templates/bugyou_plugins.cfg delete mode 100644 roles/bugyou/bugyou-plugins/templates/bugyou_services.cfg delete mode 100644 roles/nagios_client/templates/check_fedmsg_hub_procs_bugyou.cfg.j2 diff --git a/inventory/group_vars/bugyou b/inventory/group_vars/bugyou deleted file mode 100644 index 7d99eb5c67..0000000000 --- a/inventory/group_vars/bugyou +++ /dev/null @@ -1,25 +0,0 @@ ---- -# Define resources for this group of hosts here. -lvm_size: 20000 -mem_size: 1024 -num_cpus: 2 - -# for systems that do not match the above - specify the same parameter in -# the host_vars/$hostname file - -tcp_ports: [] - -fas_client_groups: sysadmin-noc,sysadmin-releng,sysadmin-fedimg,sysadmin-datanommer,sysadmin-veteran -sudoers: "{{ private }}/files/sudo/bugyou-sudoers" - -# For the MOTD -csi_security_category: Moderate -csi_primary_contact: Fedora admins - admin@fedoraproject.org -csi_purpose: Run the 'bugyou' fedmsg process that files automatic bugs in pagure -csi_relationship: | - This node runs 'bugyou', a fedmsg consumer that files pagure bugs in - response to fedmsg bus activity. - - It is primarily used to file bugs when automatic releng processes fail. - - See https://pagure.io/bugyou for more information. diff --git a/inventory/group_vars/bugyou_stg b/inventory/group_vars/bugyou_stg deleted file mode 100644 index 1acd840180..0000000000 --- a/inventory/group_vars/bugyou_stg +++ /dev/null @@ -1,25 +0,0 @@ ---- -# Define resources for this group of hosts here. -lvm_size: 20000 -mem_size: 1024 -num_cpus: 1 - -# for systems that do not match the above - specify the same parameter in -# the host_vars/$hostname file - -tcp_ports: [] - -fas_client_groups: sysadmin-noc,sysadmin-releng,sysadmin-fedimg,sysadmin-datanommer,sysadmin-veteran -sudoers: "{{ private }}/files/sudo/bugyou-stg-sudoers" - -# For the MOTD -csi_security_category: Moderate -csi_primary_contact: Fedora admins - admin@fedoraproject.org -csi_purpose: Run the 'bugyou' fedmsg process that files automatic bugs in pagure -csi_relationship: | - This node runs 'bugyou', a fedmsg consumer that files pagure bugs in - response to fedmsg bus activity. - - It is primarily used to file bugs when automatic releng processes fail. - - See https://pagure.io/bugyou for more information. diff --git a/inventory/host_vars/bugyou01.phx2.fedoraproject.org b/inventory/host_vars/bugyou01.phx2.fedoraproject.org deleted file mode 100644 index 00d19e6336..0000000000 --- a/inventory/host_vars/bugyou01.phx2.fedoraproject.org +++ /dev/null @@ -1,14 +0,0 @@ ---- -nm: 255.255.255.0 -gw: 10.5.126.254 -dns: 10.5.126.21 - -ks_url: http://10.5.126.23/repo/rhel/ks/kvm-rhel-7 -ks_repo: http://10.5.126.23/repo/rhel/RHEL7-x86_64/ - -eth0_ip: 10.5.126.129 - -volgroup: /dev/vg_guests -vmhost: virthost01.phx2.fedoraproject.org -datacenter: phx2 -freezes: true diff --git a/inventory/host_vars/bugyou01.stg.phx2.fedoraproject.org b/inventory/host_vars/bugyou01.stg.phx2.fedoraproject.org deleted file mode 100644 index cebdd774f3..0000000000 --- a/inventory/host_vars/bugyou01.stg.phx2.fedoraproject.org +++ /dev/null @@ -1,13 +0,0 @@ ---- -nm: 255.255.255.0 -gw: 10.5.128.254 -dns: 10.5.126.21 - -ks_url: http://10.5.126.23/repo/rhel/ks/kvm-rhel-7 -ks_repo: http://10.5.126.23/repo/rhel/RHEL7-x86_64/ - -eth0_ip: 10.5.128.82 - -volgroup: /dev/vg_guests -vmhost: virthost01.stg.phx2.fedoraproject.org -datacenter: phx2 diff --git a/inventory/inventory b/inventory/inventory index c833fa45b0..eb384fd919 100644 --- a/inventory/inventory +++ b/inventory/inventory @@ -102,12 +102,6 @@ blockerbugs02.phx2.fedoraproject.org [blockerbugs_stg] blockerbugs01.stg.phx2.fedoraproject.org -[bugyou] -bugyou01.phx2.fedoraproject.org - -[bugyou_stg] -bugyou01.stg.phx2.fedoraproject.org - [bugzilla2fedmsg] bugzilla2fedmsg01.phx2.fedoraproject.org @@ -709,7 +703,6 @@ basset01.stg.phx2.fedoraproject.org beaker-stg01.qa.fedoraproject.org blockerbugs01.stg.phx2.fedoraproject.org bodhi-backend01.stg.phx2.fedoraproject.org -bugyou01.stg.phx2.fedoraproject.org bugzilla2fedmsg01.stg.phx2.fedoraproject.org buildvm-01.stg.phx2.fedoraproject.org buildvm-02.stg.phx2.fedoraproject.org @@ -935,7 +928,6 @@ openqa-stg01.qa.fedoraproject.org autocloud_backend badges_backend busgateway -bugyou fedimg mbs_backend notifs_backend @@ -946,7 +938,6 @@ pkgs autocloud_backend_stg badges_backend_stg busgateway_stg -bugyou_stg fedimg_stg mbs_backend_stg notifs_backend_stg diff --git a/master.yml b/master.yml index 9cf97f5ce0..e69c35b569 100644 --- a/master.yml +++ b/master.yml @@ -28,7 +28,6 @@ - import_playbook: /srv/web/infra/ansible/playbooks/groups/bugzilla2fedmsg.yml - import_playbook: /srv/web/infra/ansible/playbooks/groups/buildhw.yml - import_playbook: /srv/web/infra/ansible/playbooks/groups/buildvm.yml -- import_playbook: /srv/web/infra/ansible/playbooks/groups/bugyou.yml - import_playbook: /srv/web/infra/ansible/playbooks/groups/busgateway.yml - import_playbook: /srv/web/infra/ansible/playbooks/groups/certgetter.yml - import_playbook: /srv/web/infra/ansible/playbooks/groups/ci.yml diff --git a/playbooks/groups/bugyou.yml b/playbooks/groups/bugyou.yml deleted file mode 100644 index 558e3ff77c..0000000000 --- a/playbooks/groups/bugyou.yml +++ /dev/null @@ -1,71 +0,0 @@ -# create a new bugyou server -# NOTE: should be used with --limit most of the time -# NOTE: make sure there is room/space for this server on the vmhost -# NOTE: most of these vars_path come from group_vars/mirrorlist or from hostvars - -- import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=bugyou:bugyou_stg" - -- name: dole out the generic configuration - hosts: bugyou:bugyou_stg - user: root - gather_facts: True - - vars_files: - - /srv/web/infra/ansible/vars/global.yml - - "/srv/private/ansible/vars.yml" - - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml - - roles: - - base - - rkhunter - - nagios_client - - collectd/base - - hosts - - fas_client - - sudo - - pre_tasks: - - import_tasks: "{{ tasks_path }}/yumrepos.yml" - - tasks: - - import_tasks: "{{ tasks_path }}/2fa_client.yml" - - import_tasks: "{{ tasks_path }}/motd.yml" - - handlers: - - import_tasks: "{{ handlers_path }}/restart_services.yml" - -- name: set up fedmsg basics - hosts: bugyou:bugyou_stg - user: root - gather_facts: True - - vars_files: - - /srv/web/infra/ansible/vars/global.yml - - "/srv/private/ansible/vars.yml" - - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml - - roles: - - fedmsg/base - - handlers: - - import_tasks: "{{ handlers_path }}/restart_services.yml" - -- name: dole out the service-specific config - hosts: bugyou:bugyou_stg - user: root - gather_facts: True - - roles: - - fedmsg/hub - - bugyou/bugyou-master - - bugyou/bugyou-plugins - - role: collectd/fedmsg-service - process: fedmsg-hub - - vars_files: - - /srv/web/infra/ansible/vars/global.yml - - "/srv/private/ansible/vars.yml" - - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml - - handlers: - - import_tasks: "{{ handlers_path }}/restart_services.yml" diff --git a/playbooks/manual/upgrade/bugyou.yml b/playbooks/manual/upgrade/bugyou.yml deleted file mode 100644 index 29b280c910..0000000000 --- a/playbooks/manual/upgrade/bugyou.yml +++ /dev/null @@ -1,59 +0,0 @@ -- name: push packages out - hosts: bugyou:bugyou_stg - user: root - vars_files: - - /srv/web/infra/ansible/vars/global.yml - - "/srv/private/ansible/vars.yml" - - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml - vars: - testing: False - handlers: - - import_tasks: "{{ handlers_path }}/restart_services.yml" - - tasks: - - name: clean all metadata {%if testing%}(with infrastructure-testing on){%endif%} - command: yum clean all {%if testing%} --enablerepo=infrastructure-tags-stg {%endif%} - always_run: yes - - name: update bugyou packages from main repo - package: name="bugyou*" state=latest - when: not testing - - name: yum update bugyou packages from testing repo - yum: name="bugyou*" state=latest enablerepo=infrastructure-tags-stg - when: testing - -- name: verify the backends, stop them, and then upgrade the db - hosts: bugyou:bugyou_stg - user: root - vars_files: - - /srv/web/infra/ansible/vars/global.yml - - "/srv/private/ansible/vars.yml" - - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml - handlers: - - import_tasks: "{{ handlers_path }}/restart_services.yml" - - pre_tasks: - - name: tell nagios to shush w.r.t. the backend - nagios: action=downtime minutes=15 service=host host={{ inventory_hostname_short }}{{ env_suffix }} - delegate_to: noc01.phx2.fedoraproject.org - ignore_errors: true - - roles: - - bugyou/backend - - tasks: - - name: Stop the fedmsg-hub backend - service: name="fedmsg-hub" state=stopped - - name: Stop the bugyou controller backend - service: name="bugyou-cntrl" state=stopped - - - name: And... start the bugyou controller backend again - service: name="bugyou-cntrl" state=started - - name: And... start the fedmsg-hub backend again - service: name="fedmsg-hub" state=started - - post_tasks: - - name: tell nagios to unshush w.r.t. the backend - nagios: action=unsilence service=host host={{ inventory_hostname_short }}{{ env_suffix }} - delegate_to: noc01.phx2.fedoraproject.org - ignore_errors: true - diff --git a/roles/bugyou/bugyou-master/tasks/main.yml b/roles/bugyou/bugyou-master/tasks/main.yml deleted file mode 100644 index 59ed4f5e89..0000000000 --- a/roles/bugyou/bugyou-master/tasks/main.yml +++ /dev/null @@ -1,30 +0,0 @@ ---- -# Configuration for Bugyou - -- name: install needed packages for bugyou - package: name={{ item }} state=present enablerepo=epel-testing - with_items: - - bugyou - notify: - - restart fedmsg-hub - tags: - - bugyou - - bugyou/master - -- name: copy bugyou fedmsg configuration - template: > - src={{ item }} dest=/etc/fedmsg.d/{{ item }} - owner=root group=fedmsg mode=0640 - with_items: - - bugyou.py - notify: - - restart fedmsg-hub - tags: - - bugyou - - bugyou/master - -# This is shipped in the package but leaks stg and prod -- name: Clear out endpoints-bugyou.py - copy: - dest: /etc/fedmsg.d/endpoints-bugyou.py - content: 'config = {}' diff --git a/roles/bugyou/bugyou-master/templates/bugyou.py b/roles/bugyou/bugyou-master/templates/bugyou.py deleted file mode 100644 index 3952d3fae9..0000000000 --- a/roles/bugyou/bugyou-master/templates/bugyou.py +++ /dev/null @@ -1,15 +0,0 @@ -config = { - # Consumer stuff - "bugyou.consumer.enabled": True, - - # Turn on the logging for bugyou - "logging": dict( - loggers=dict( - bugyou={ - "level": "DEBUG", - "propagate": False, - "handlers": ['console'], - }, - ), - ), -} diff --git a/roles/bugyou/bugyou-plugins/tasks/main.yml b/roles/bugyou/bugyou-plugins/tasks/main.yml deleted file mode 100644 index cc19c899d6..0000000000 --- a/roles/bugyou/bugyou-plugins/tasks/main.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- -# Configuration for Bugyou Plugins - -- name: install needed packages for bugyou_plugins - package: name={{ item }} state=present enablerepo=epel-testing - with_items: - - python-libpagure - - bugyou_plugins - - redis - notify: - - restart fedmsg-hub - tags: - - bugyou - - bugyou/plugins - -- name: copy bugyou plugins configuration files - template: > - src={{ item }} - dest=/etc/bugyou/{{ item }} - owner=root - group=fedmsg - mode=0640 - with_items: - - bugyou_plugins.cfg - - bugyou_services.cfg - notify: - - restart fedmsg-hub - tags: - - bugyou - - bugyou/plugins - -- name: start the bugyou-cntrl - service: name=bugyou-cntrl state=started - tags: - - bugyou - - bugyou/plugins - when: env == "production" diff --git a/roles/bugyou/bugyou-plugins/templates/bugyou_plugins.cfg b/roles/bugyou/bugyou-plugins/templates/bugyou_plugins.cfg deleted file mode 100644 index 8f6bc1c235..0000000000 --- a/roles/bugyou/bugyou-plugins/templates/bugyou_plugins.cfg +++ /dev/null @@ -1,3 +0,0 @@ -[autocloud] -services = pagure -topic = org.fedoraproject.prod.autocloud.image.success, org.fedoraproject.prod.autocloud.image.failed diff --git a/roles/bugyou/bugyou-plugins/templates/bugyou_services.cfg b/roles/bugyou/bugyou-plugins/templates/bugyou_services.cfg deleted file mode 100644 index bbb1e6e015..0000000000 --- a/roles/bugyou/bugyou-plugins/templates/bugyou_services.cfg +++ /dev/null @@ -1,8 +0,0 @@ -[autocloud_pagure] -{% if env == 'staging' %} -repo_name = atomic-images-test -access_token = {{bugyou_stg_pagure_atomic_images_api_key}} -{% else %} -repo_name = atomic-images -access_token = {{bugyou_pagure_atomic_images_api_key}} -{% endif %} diff --git a/roles/nagios_client/tasks/main.yml b/roles/nagios_client/tasks/main.yml index 9406493d50..d35f820066 100644 --- a/roles/nagios_client/tasks/main.yml +++ b/roles/nagios_client/tasks/main.yml @@ -153,18 +153,6 @@ - config - nagios_client -# -# The actual items files here end in .j2 (they are templates) -# So when adding or modifying them change the .j2 version in git. -# -- name: install nrpe bugyou fedmsg hubs check config - template: src=check_fedmsg_hub_procs_bugyou.cfg.j2 dest=/etc/nrpe.d/check_fedmsg_hub_procs_bugyou.cfg - when: inventory_hostname.startswith('bugyou01') - notify: - - restart nrpe - tags: - - nagios_client - # # The actual items files here end in .j2 (they are templates) # So when adding or modifying them change the .j2 version in git. diff --git a/roles/nagios_client/templates/check_fedmsg_consumers.cfg.j2 b/roles/nagios_client/templates/check_fedmsg_consumers.cfg.j2 index 4b4cd6c61f..924c946c02 100644 --- a/roles/nagios_client/templates/check_fedmsg_consumers.cfg.j2 +++ b/roles/nagios_client/templates/check_fedmsg_consumers.cfg.j2 @@ -12,7 +12,6 @@ command[check_fedmsg_cp_fedimg_backend]={{libdir}}/nagios/plugins/check_fedmsg_p command[check_fedmsg_cp_hotness_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub BugzillaTicketFiler MonitoringProducer command[check_fedmsg_cp_autocloud_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub AutoCloudConsumer MonitoringProducer command[check_fedmsg_cp_packages_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub CacheInvalidator MonitoringProducer -command[check_fedmsg_cp_bugyou_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub BugyouConsumer MonitoringProducer command[check_fedmsg_cp_pdc_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub PDCUpdater MonitoringProducer command[check_fedmsg_cp_mbs_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub MBSConsumer MBSProducer MonitoringProducer @@ -29,7 +28,6 @@ command[check_fedmsg_cexceptions_fedimg_backend]={{libdir}}/nagios/plugins/check command[check_fedmsg_cexceptions_hotness_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub BugzillaTicketFiler 1 10 command[check_fedmsg_cexceptions_autocloud_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub AutoCloudConsumer 1 10 command[check_fedmsg_cexceptions_packages_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub CacheInvalidator 1 10 -command[check_fedmsg_cexceptions_bugyou_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub BugyouConsumer 1 10 command[check_fedmsg_cexceptions_pdc_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub PDCUpdater 1 10 command[check_fedmsg_cexceptions_mbs_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub MBSConsumer 1 10 @@ -46,7 +44,6 @@ command[check_fedmsg_cbacklog_fedimg_backend]={{libdir}}/nagios/plugins/check_fe command[check_fedmsg_cbacklog_hotness_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub BugzillaTicketFiler 1000 5000 command[check_fedmsg_cbacklog_autocloud_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub AutoCloudConsumer 100 500 command[check_fedmsg_cbacklog_packages_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub CacheInvalidator 30000 40000 -command[check_fedmsg_cbacklog_bugyou_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub BugyouConsumer 5000 10000 command[check_fedmsg_cbacklog_pdc_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub PDCUpdater 10000 20000 command[check_fedmsg_cbacklog_mbs_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub MBSConsumer 10000 20000 diff --git a/roles/nagios_client/templates/check_fedmsg_hub_procs_bugyou.cfg.j2 b/roles/nagios_client/templates/check_fedmsg_hub_procs_bugyou.cfg.j2 deleted file mode 100644 index 94678ebb3d..0000000000 --- a/roles/nagios_client/templates/check_fedmsg_hub_procs_bugyou.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_fedmsg_hub_procs_bugyou]={{ libdir }}/nagios/plugins/check_procs -c 3:3 -C 'fedmsg-hub' -u fedmsg diff --git a/roles/nagios_server/files/nagios/services/fedmsg.cfg b/roles/nagios_server/files/nagios/services/fedmsg.cfg index 2d2b354080..17dfdf2470 100644 --- a/roles/nagios_server/files/nagios/services/fedmsg.cfg +++ b/roles/nagios_server/files/nagios/services/fedmsg.cfg @@ -115,12 +115,6 @@ define service { check_command check_by_nrpe!check_fedmsg_hub_proc use defaulttemplate } -define service { - host_name bugyou01.phx2.fedoraproject.org - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_hub_procs_bugyou - use defaulttemplate -} define service { host_name pdc-backend01.phx2.fedoraproject.org service_description Check for fedmsg-hub proc @@ -369,12 +363,6 @@ define service { check_command check_by_nrpe!check_fedmsg_cp_packages_backend use defaulttemplate } -define service { - host_name bugyou01.phx2.fedoraproject.org - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_bugyou_backend - use defaulttemplate -} define service { host_name pdc-backend01.phx2.fedoraproject.org service_description Check fedmsg consumers and producers hub @@ -452,14 +440,6 @@ define service { check_command check_by_nrpe!check_fedmsg_cexceptions_packages_backend use defaulttemplate } - -define service { - host_name bugyou01.phx2.fedoraproject.org - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_bugyou_backend - use defaulttemplate -} - define service { host_name pdc-backend01.phx2.fedoraproject.org service_description Check fedmsg-hub consumers exceptions @@ -539,13 +519,6 @@ define service { use defaulttemplate } -define service { - host_name bugyou01.phx2.fedoraproject.org - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_bugyou_backend - use defaulttemplate -} - define service { host_name pdc-backend01.phx2.fedoraproject.org service_description Check fedmsg-hub consumers backlog diff --git a/roles/nagios_server/files/nrpe/nrpe.cfg b/roles/nagios_server/files/nrpe/nrpe.cfg index e6ea919099..377df4a9a2 100644 --- a/roles/nagios_server/files/nrpe/nrpe.cfg +++ b/roles/nagios_server/files/nrpe/nrpe.cfg @@ -398,7 +398,6 @@ command[check_fedmsg_cp_fedimg_backend]=/usr/lib64/nagios/plugins/check_fedmsg_p command[check_fedmsg_cp_hotness_backend]=/usr/lib64/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub BugzillaTicketFiler MonitoringProducer command[check_fedmsg_cp_autocloud_backend]=/usr/lib64/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub AutoCloudConsumer MonitoringProducer command[check_fedmsg_cp_packages_backend]=/usr/lib64/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub CacheInvalidator MonitoringProducer -command[check_fedmsg_cp_bugyou_backend]=/usr/lib64/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub BugyouConsumer MonitoringProducer command[check_fedmsg_cp_pdc_backend]=/usr/lib64/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub PDCUpdater MonitoringProducer command[check_fedmsg_cp_mbs_backend]=/usr/lib64/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub MBSConsumer MBSProducer MonitoringProducer @@ -414,7 +413,6 @@ command[check_fedmsg_cexceptions_fedimg_backend]=/usr/lib64/nagios/plugins/check command[check_fedmsg_cexceptions_hotness_backend]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub BugzillaTicketFiler 1 10 command[check_fedmsg_cexceptions_autocloud_backend]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub AutoCloudConsumer 1 10 command[check_fedmsg_cexceptions_packages_backend]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub CacheInvalidator 1 10 -command[check_fedmsg_cexceptions_bugyou_backend]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub BugyouConsumer 1 10 command[check_fedmsg_cexceptions_pdc_backend]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub PDCUpdater 1 10 command[check_fedmsg_cexceptions_mbs_backend]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub MBSConsumer 1 10 @@ -430,7 +428,6 @@ command[check_fedmsg_cbacklog_fedimg_backend]=/usr/lib64/nagios/plugins/check_fe command[check_fedmsg_cbacklog_hotness_backend]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub BugzillaTicketFiler 100 500 command[check_fedmsg_cbacklog_autocloud_backend_hub]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub AutoCloudConsumer 500 1000 command[check_fedmsg_cbacklog_packages_backend_hub]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub CacheInvalidator 30000 40000 -command[check_fedmsg_cbacklog_bugyou_backend_hub]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub BugyouConsumer 5000 10000 command[check_fedmsg_cbacklog_pdc_backend_hub]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub PDCUpdater 10000 20000 command[check_fedmsg_cbacklog_mbs_backend_hub]=/usr/lib64/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub MBSConsumer 1000 2000