get_zabbix_problems.yml 1022 B

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