diff options
author | Matt Woodson <mwoodson@gmail.com> | 2015-11-06 15:10:23 -0500 |
---|---|---|
committer | Matt Woodson <mwoodson@gmail.com> | 2015-11-06 15:10:23 -0500 |
commit | 20ef91a6164ce5b54f5b40a6baa035e87263b772 (patch) | |
tree | 340958437975027ee3c70769934d53d460f6b6e9 /roles/lib_zabbix/tasks | |
parent | 2bc586b6c8d5472abbef3697bcd314d491be48b4 (diff) | |
parent | ae06c06c4b3584e5891c806b690f5ac1fa283124 (diff) | |
download | openshift-20ef91a6164ce5b54f5b40a6baa035e87263b772.tar.gz openshift-20ef91a6164ce5b54f5b40a6baa035e87263b772.tar.bz2 openshift-20ef91a6164ce5b54f5b40a6baa035e87263b772.tar.xz openshift-20ef91a6164ce5b54f5b40a6baa035e87263b772.zip |
Merge pull request #832 from mwoodson/disk_checks
added network checks. also updated item prototype code to support more
Diffstat (limited to 'roles/lib_zabbix/tasks')
-rw-r--r-- | roles/lib_zabbix/tasks/create_template.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/lib_zabbix/tasks/create_template.yml b/roles/lib_zabbix/tasks/create_template.yml index ac9cf756b..44c4e6766 100644 --- a/roles/lib_zabbix/tasks/create_template.yml +++ b/roles/lib_zabbix/tasks/create_template.yml @@ -84,6 +84,10 @@ template_name: "{{ template.name }}" applications: "{{ item.applications }}" description: "{{ item.description | default('', True) }}" + multiplier: "{{ item.multiplier | default('', True) }}" + units: "{{ item.units | default('', True) }}" + interval: "{{ item.interval | default(60, True) }}" + delta: "{{ item.delta | default(0, True) }}" with_items: template.zitemprototypes when: template.zitemprototypes is defined |