diff options
| author | Thomas Wiest <twiest@redhat.com> | 2015-08-28 18:03:59 -0400 | 
|---|---|---|
| committer | Thomas Wiest <twiest@redhat.com> | 2015-08-31 14:14:43 -0400 | 
| commit | 1f52ea8c4e2f8cfce51e98cb3614c61f0d78ec3e (patch) | |
| tree | 724cceae135c9e966ad32cf5443dad16fca5a778 /roles/lib_zabbix/tasks | |
| parent | bac81adf9d7036e02db457eb78d5d91c3d630cd9 (diff) | |
| download | openshift-1f52ea8c4e2f8cfce51e98cb3614c61f0d78ec3e.tar.gz openshift-1f52ea8c4e2f8cfce51e98cb3614c61f0d78ec3e.tar.bz2 openshift-1f52ea8c4e2f8cfce51e98cb3614c61f0d78ec3e.tar.xz openshift-1f52ea8c4e2f8cfce51e98cb3614c61f0d78ec3e.zip | |
added docker zabbix template, removed unused / old templates so they don't confuse other people.
Diffstat (limited to 'roles/lib_zabbix/tasks')
| -rw-r--r-- | roles/lib_zabbix/tasks/create_template.yml | 36 | 
1 files changed, 17 insertions, 19 deletions
| diff --git a/roles/lib_zabbix/tasks/create_template.yml b/roles/lib_zabbix/tasks/create_template.yml index 022ca52f2..444fd0a14 100644 --- a/roles/lib_zabbix/tasks/create_template.yml +++ b/roles/lib_zabbix/tasks/create_template.yml @@ -16,18 +16,21 @@  - debug: var=lzbx_applications -- name: Create Application -  zbx_application: -    zbx_server: "{{ server }}" -    zbx_user: "{{ user }}" -    zbx_password: "{{ password }}" -    name: "{{ item }}" -    template_name: "{{ template.name }}" -  with_items: lzbx_applications -  register: created_application -  when: template.zitems is defined - -- debug: var=created_application +# +# twiest: This is commented out because it doesn't work correctly +# +#- name: Create Application +#  zbx_application: +#    zbx_server: "{{ server }}" +#    zbx_user: "{{ user }}" +#    zbx_password: "{{ password }}" +#    name: "{{ item }}" +#    template_name: "{{ template.name }}" +#  with_items: lzbx_applications +#  register: created_application +#  when: template.zitems is defined + +#- debug: var=created_application  - name: Create Items    zbx_item: @@ -38,24 +41,19 @@      name: "{{ item.name | default(item.key, true) }}"      value_type: "{{ item.value_type | default('int') }}"      template_name: "{{ template.name }}" -    applications: "{{ item.applications }}" +#    applications: "{{ item.applications }}"    with_items: template.zitems    register: created_items    when: template.zitems is defined -#- debug: var=ctp_created_items -  - name: Create Triggers    zbx_trigger:      zbx_server: "{{ server }}"      zbx_user: "{{ user }}"      zbx_password: "{{ password }}"      description: "{{ item.description }}" +    dependencies: "{{ item.dependencies | default([], true) }}"      expression: "{{ item.expression }}"      priority: "{{ item.priority }}"    with_items: template.ztriggers    when: template.ztriggers is defined - -#- debug: var=ctp_created_triggers - - | 
