diff options
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/os_zabbix/vars/template_os_linux.yml | 25 | 
1 files changed, 25 insertions, 0 deletions
diff --git a/roles/os_zabbix/vars/template_os_linux.yml b/roles/os_zabbix/vars/template_os_linux.yml index 9b56d20d4..7bc8ddc5d 100644 --- a/roles/os_zabbix/vars/template_os_linux.yml +++ b/roles/os_zabbix/vars/template_os_linux.yml @@ -156,3 +156,28 @@ g_template_os_linux:      applications:      - Disk      value_type: float + +  ztriggers: +  - description: 'Filesystem: / has less than 10% free on {HOST.NAME}' +    expression: '{Template OS Linux:filesys.full.xvda2.last()}>90' +    priority: warn + +  - description: 'Filesystem: / has less than 5% free on {HOST.NAME}' +    expression: '{Template OS Linux:filesys.full.xvda2.last()}>95' +    priority: high + +  - description: 'Filesystem: /var has less than 10% free on {HOST.NAME}' +    expression: '{Template OS Linux:filesys.full.xvda3.last()}>90' +    priority: warn + +  - description: 'Filesystem: /var has less than 5% free on {HOST.NAME}' +    expression: '{Template OS Linux:filesys.full.xvda3.last()}>95' +    priority: high + +  - description: 'Too many TOTAL processes on {HOST.NAME}' +    expression: '{Template OS Linux:proc.nprocs.last()}>5000' +    priority: warn + +  - description: 'Lack of available memory on {HOST.NAME}' +    expression: '{Template OS Linux:mem.freemem.last()}<3000' +    priority: warn  | 
