diff options
author | Matt Woodson <mwoodson@redhat.com> | 2015-11-16 16:21:47 -0500 |
---|---|---|
committer | Matt Woodson <mwoodson@redhat.com> | 2015-11-16 16:54:42 -0500 |
commit | 9abce4c8c8f40fa6b4bfdea6b5cffc6442249435 (patch) | |
tree | f6a5b402e05dae5cbce4faee9e1bb2d3be1c98d6 /roles/os_zabbix | |
parent | 5b095d9fe0cff133d3f9b0557b3d06a892c1df71 (diff) | |
download | openshift-9abce4c8c8f40fa6b4bfdea6b5cffc6442249435.tar.gz openshift-9abce4c8c8f40fa6b4bfdea6b5cffc6442249435.tar.bz2 openshift-9abce4c8c8f40fa6b4bfdea6b5cffc6442249435.tar.xz openshift-9abce4c8c8f40fa6b4bfdea6b5cffc6442249435.zip |
added healthz check and more pod count checks
Diffstat (limited to 'roles/os_zabbix')
-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' |