summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Woodson <mwoodson@gmail.com>2015-12-04 11:04:48 -0500
committerMatt Woodson <mwoodson@gmail.com>2015-12-04 11:04:48 -0500
commit1c01ea16e7acc002fd0c0c78301190155adcea3c (patch)
tree1c6db1f2220e7d2d6aac1625c62532f2a3b53b1a
parent256ad3a1efa79d99ee1f7b545cb31f35dc206ce4 (diff)
parent92ce3c5fb25745beea179ace7814b7d4e9019c1b (diff)
downloadopenshift-1c01ea16e7acc002fd0c0c78301190155adcea3c.tar.gz
openshift-1c01ea16e7acc002fd0c0c78301190155adcea3c.tar.bz2
openshift-1c01ea16e7acc002fd0c0c78301190155adcea3c.tar.xz
openshift-1c01ea16e7acc002fd0c0c78301190155adcea3c.zip
Merge pull request #1023 from mwoodson/master_checks
Zabbix: added dependency for inode disk check
-rw-r--r--roles/os_zabbix/vars/template_os_linux.yml12
1 files changed, 7 insertions, 5 deletions
diff --git a/roles/os_zabbix/vars/template_os_linux.yml b/roles/os_zabbix/vars/template_os_linux.yml
index 023f1670b..778e4341d 100644
--- a/roles/os_zabbix/vars/template_os_linux.yml
+++ b/roles/os_zabbix/vars/template_os_linux.yml
@@ -271,16 +271,18 @@ g_template_os_linux:
dependencies:
- 'Filesystem: {#OSO_FILESYS} has less than 10% free disk space on {HOST.NAME}'
- - name: 'Filesystem: {#OSO_FILESYS} has less than 10% free inodes on {HOST.NAME}'
- expression: '{Template OS Linux:disc.filesys.inodes.pused[{#OSO_FILESYS}].last()}>90'
- url: 'https://github.com/openshift/ops-sop/blob/master/V3/Alerts/check_filesys_full.asciidoc'
- priority: warn
-
- name: 'Filesystem: {#OSO_FILESYS} has less than 5% free inodes on {HOST.NAME}'
expression: '{Template OS Linux:disc.filesys.inodes.pused[{#OSO_FILESYS}].last()}>95'
url: 'https://github.com/openshift/ops-sop/blob/master/V3/Alerts/check_filesys_full.asciidoc'
priority: high
+ - name: 'Filesystem: {#OSO_FILESYS} has less than 10% free inodes on {HOST.NAME}'
+ expression: '{Template OS Linux:disc.filesys.inodes.pused[{#OSO_FILESYS}].last()}>90'
+ url: 'https://github.com/openshift/ops-sop/blob/master/V3/Alerts/check_filesys_full.asciidoc'
+ priority: warn
+ dependencies:
+ - 'Filesystem: {#OSO_FILESYS} has less than 5% free inodes on {HOST.NAME}'
+
ztriggers:
- name: 'Too many TOTAL processes on {HOST.NAME}'
expression: '{Template OS Linux:proc.nprocs.last()}>5000'