diff options
| author | Marek Mahut <mmahut@redhat.com> | 2015-10-14 14:44:58 +0200 | 
|---|---|---|
| committer | Marek Mahut <mmahut@redhat.com> | 2015-11-03 11:29:40 +0100 | 
| commit | e35c5778604eb46be4079b47f786318c97a3f8b8 (patch) | |
| tree | a2bf267e56ef328b4a6a5d48a8656a08f7b0ff48 /roles | |
| parent | a4d5e59c413746cb1715b15a9e158be3f3a94a54 (diff) | |
| download | openshift-e35c5778604eb46be4079b47f786318c97a3f8b8.tar.gz openshift-e35c5778604eb46be4079b47f786318c97a3f8b8.tar.bz2 openshift-e35c5778604eb46be4079b47f786318c97a3f8b8.tar.xz openshift-e35c5778604eb46be4079b47f786318c97a3f8b8.zip | |
Adding openshift.node.etcd items
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/os_zabbix/vars/template_openshift_master.yml | 82 | 
1 files changed, 82 insertions, 0 deletions
| diff --git a/roles/os_zabbix/vars/template_openshift_master.yml b/roles/os_zabbix/vars/template_openshift_master.yml index 1de4fefbb..cd702a814 100644 --- a/roles/os_zabbix/vars/template_openshift_master.yml +++ b/roles/os_zabbix/vars/template_openshift_master.yml @@ -31,6 +31,78 @@ g_template_openshift_master:      applications:      - Openshift Master +  - key: openshift.master.etcd.create.success +    description: Show number of successful create actions +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.etcd.create.fail +    description: Show number of failed create actions +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.etcd.delete.success +    description: Show number of successful delete actions +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.etcd.delete.fail +    description: Show number of failed delete actions +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.etcd.get.success +    description: Show number of successful get actions +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.etcd.get.fail +    description: Show number of failed get actions +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.etcd.set.success +    description: Show number of successful set actions +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.etcd.set.fail +    description: Show number of failed set actions +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.etcd.update.success +    description: Show number of successful update actions +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.etcd.update.fail +    description: Show number of failed update actions +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.etcd.watchers +    description: Show number of etcd watchers +    type: int +    applications: +    - Openshift Master + +  - key: openshift.master.etcd.ping +    description: etcd ping +    type: int +    applications: +    - Openshift Master +    ztriggers:    - name: 'Application creation has failed on {HOST.NAME}'      expression: '{Template Openshift Master:create_app.last(#1)}=1 and {Template Openshift Master:create_app.last(#2)}=1' @@ -56,3 +128,13 @@ g_template_openshift_master:      expression: '{Template Openshift Master:openshift.project.counter.last()}=0'      url: 'https://github.com/openshift/ops-sop/blob/master/V3/Alerts/openshift_master.asciidoc'      priority: info + +  - name: 'Low number of etcd watchers on {HOST.NAME}' +    expression: '{Template Openshift Master:openshift.master.etcd.watchers.last(#1)}<10 and {Template Openshift Master:openshift.master.etcd.watchers.last(#2)}<10' +    url: 'https://github.com/openshift/ops-sop/blob/master/V3/Alerts/check_etcd.asciidoc' +    priority: avg + +  - name: 'Etcd ping failed on {HOST.NAME}' +    expression: '{Template Openshift Master:openshift.master.etcd.ping.last(#1)}=0 and {Template Openshift Master:openshift.master.etcd.ping.last(#2)}=0' +    url: 'https://github.com/openshift/ops-sop/blob/master/V3/Alerts/check_etcd.asciidoc' +    priority: high | 
