diff options
| -rw-r--r-- | roles/os_zabbix/vars/template_openshift_master.yml | 25 | 
1 files changed, 24 insertions, 1 deletions
| diff --git a/roles/os_zabbix/vars/template_openshift_master.yml b/roles/os_zabbix/vars/template_openshift_master.yml index 6defc4989..aaf5b9445 100644 --- a/roles/os_zabbix/vars/template_openshift_master.yml +++ b/roles/os_zabbix/vars/template_openshift_master.yml @@ -13,6 +13,12 @@ g_template_openshift_master:      applications:      - Openshift Master +  - key: openshift.master.api.healthz +    description: "Checks the healthz check of the master's api: https://master_host/healthz" +    type: bool +    applications: +    - Openshift Master +    - key: openshift.master.user.count      description: Shows number of users in a cluster      type: int @@ -24,7 +30,19 @@ g_template_openshift_master:      type: int      applications:      - Openshift Master -   + +  - key: openshift.master.pod.user.running.count +    description: Shows number of user pods running (non infrastructure pods) +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.pod.total.count +    description: Shows total number of pods (running and non running) +    type: int +    applications: +    - Openshift Master +    - key: openshift.project.counter      description: Shows number of projects on a cluster      type: int @@ -109,6 +127,11 @@ g_template_openshift_master:      url: 'https://github.com/openshift/ops-sop/blob/master/V3/Alerts/check_create_app.asciidoc'      priority: avg +  - name: 'Openshift Master API health check is failing on {HOST.NAME}' +    expression: '{Template Openshift Master:openshift.master.api.healthz.max(#3)}<1' +    url: 'https://github.com/openshift/ops-sop/blob/master/V3/Alerts/openshift_master.asciidoc' +    priority: high +    - name: 'Openshift Master process not running on {HOST.NAME}'      expression: '{Template Openshift Master:openshift.master.process.count.max(#3)}<1'      url: 'https://github.com/openshift/ops-sop/blob/master/V3/Alerts/openshift_master.asciidoc' | 
