diff options
author | Matt Woodson <mwoodson@redhat.com> | 2015-11-06 12:47:15 -0500 |
---|---|---|
committer | Matt Woodson <mwoodson@redhat.com> | 2015-11-06 12:47:15 -0500 |
commit | ae06c06c4b3584e5891c806b690f5ac1fa283124 (patch) | |
tree | b96fc780b253d0182e4d416cc2b057db30a43380 /roles/lib_zabbix/tasks | |
parent | f1db40374cc98205118ff1f6320b8bffe9bf3dc1 (diff) | |
download | openshift-ae06c06c4b3584e5891c806b690f5ac1fa283124.tar.gz openshift-ae06c06c4b3584e5891c806b690f5ac1fa283124.tar.bz2 openshift-ae06c06c4b3584e5891c806b690f5ac1fa283124.tar.xz openshift-ae06c06c4b3584e5891c806b690f5ac1fa283124.zip |
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 |