get_zabbix_problems.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ---
  2. - name: 'Get current hosts who have triggers that are alerting by trigger description'
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. roles:
  8. - os_zabbix
  9. post_tasks:
  10. - assert:
  11. that: oo_desc is defined
  12. - zbxapi:
  13. server: https://noc2.ops.rhcloud.com/zabbix/api_jsonrpc.php
  14. zbx_class: Trigger
  15. state: list
  16. params:
  17. only_true: true
  18. output: extend
  19. selectHosts: extend
  20. searchWildCardsEnabled: 1
  21. search:
  22. description: "{{ oo_desc }}"
  23. register: problems
  24. - debug: var=problems
  25. - set_fact:
  26. problem_hosts: "{{ problems.results | oo_collect(attribute='hosts') | oo_flatten | oo_collect(attribute='host') | difference(['aggregates']) }}"
  27. - debug: var=problem_hosts
  28. - add_host:
  29. name: "{{ item }}"
  30. groups: problem_hosts_group
  31. with_items: "{{ problem_hosts }}"
  32. - name: "Run on problem hosts"
  33. hosts: problem_hosts_group
  34. gather_facts: no
  35. tasks:
  36. - command: "{{ oo_cmd }}"
  37. when: oo_cmd is defined