diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2015-10-20 17:00:14 -0400 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2015-10-20 17:00:14 -0400 |
commit | ba80a2c5b19614c87d2ce0568ed8830c62d40f95 (patch) | |
tree | 09383cf6681c21852d91d874e865e5545a97f97f /roles/lib_zabbix/tasks | |
parent | a6d3017291433413649c915cfb3de90b362175fa (diff) | |
download | openshift-ba80a2c5b19614c87d2ce0568ed8830c62d40f95.tar.gz openshift-ba80a2c5b19614c87d2ce0568ed8830c62d40f95.tar.bz2 openshift-ba80a2c5b19614c87d2ce0568ed8830c62d40f95.tar.xz openshift-ba80a2c5b19614c87d2ce0568ed8830c62d40f95.zip |
Zabbix server stat fixes. enable the proper item types.
Diffstat (limited to 'roles/lib_zabbix/tasks')
-rw-r--r-- | roles/lib_zabbix/tasks/create_template.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/lib_zabbix/tasks/create_template.yml b/roles/lib_zabbix/tasks/create_template.yml index 41381e76c..df7888a95 100644 --- a/roles/lib_zabbix/tasks/create_template.yml +++ b/roles/lib_zabbix/tasks/create_template.yml @@ -38,6 +38,8 @@ units: "{{ item.units | default('', True) }}" template_name: "{{ template.name }}" applications: "{{ item.applications }}" + zabbix_type: "{{ item.zabbix_type | default(2, True) }}" + interval: "{{ item.interval | default(60, True) }}" with_items: template.zitems register: created_items when: template.zitems is defined |