community.zabbix.zabbix_correlation 模块 – 创建/更新/删除 Zabbix 关联

注意

此模块是 community.zabbix 集合 (版本 3.2.0) 的一部分。

如果您正在使用 ansible 包,您可能已经安装了此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install community.zabbix。您需要进一步的要求才能使用此模块,有关详细信息,请参阅 要求

要在 playbook 中使用它,请指定: community.zabbix.zabbix_correlation

community.zabbix 2.4.0 中的新增功能

概要

  • 此模块允许您创建、更新和删除 Zabbix 关联。

要求

执行此模块的主机需要以下要求。

  • python >= 3.9

参数

参数

注释

描述

字符串

此关联的描述

过滤器

字典

过滤器。

条件

列表 / 元素=字典 / 必需

条件。

公式 ID

字符串

用于从自定义表达式引用条件的任意唯一 ID。

此参数的值只能包含大写字母。

如果过滤器的 *evaltype* 的值为 custom_expression,则此参数为必需。

主机组

字符串

主机组名称的名称

如果条件的 *type* 的值为 new_event_host_group,则此参数为必需。

新标签

字符串

新事件标签。

如果条件的 *type* 的值为 event_tag_pair,则此参数为必需。

旧标签

字符串

旧事件标签。

如果条件的 *type* 的值为 event_tag_pair,则此参数为必需。

运算符

字符串

条件运算符。

如果条件的 *type* 的值为 new_event_host_groupold_event_tag_valuenew_event_tag_value,则此参数为必需。

如果条件的 *type* 的值为 new_event_host_group,则只能选择 equalnot_equal

选择

  • "equal"

  • "not_equal"

  • "like"

  • "not_like"

标签

字符串

事件标签(旧或新)。

如果条件的 *type* 的值为 old_event_tagnew_event_tagold_event_tag_valuenew_event_tag_value,则此参数为必需。

类型

字符串 / 必需

条件的类型。

选择

  • "old_event_tag"

  • "new_event_tag"

  • "new_event_host_group"

  • "event_tag_pair"

  • "old_event_tag_value"

  • "new_event_tag_value"

字符串

事件标签(旧或新)值。

如果条件的 *type* 的值为 old_event_tag_valuenew_event_tag_value,则此参数为必需。

评估类型

字符串 / 必需

过滤器的评估方法。

选择

  • "and_or"

  • "and"

  • "or"

  • "custom_expression"

公式

字符串

过滤器的自定义表达式。

如果 *evaltype* 的值为 custom_expression,则此参数为必需。

http_login_password

字符串

基本身份验证密码

http_login_user

字符串

基本身份验证登录名

名称

字符串 / 必需

此关联的名称

操作

列表 / 元素=字典

操作。

类型

字符串 / 必需

操作的类型。

选择

  • "close_old_events"

  • "close_new_event"

状态

字符串

关联的状态。

选择

  • "present" ← (默认)

  • "absent"

状态

字符串

关联的状态。

选择

  • "enabled" ← (默认)

  • "disabled"

示例

# If you want to use Username and Password to be authenticated by Zabbix Server
- name: Set credentials to access Zabbix Server API
  ansible.builtin.set_fact:
    ansible_user: Admin
    ansible_httpapi_pass: zabbix

# If you want to use API token to be authenticated by Zabbix Server
# https://www.zabbix.com/documentation/current/en/manual/web_interface/frontend_sections/administration/general#api-tokens
- name: Set API token
  ansible.builtin.set_fact:
    ansible_zabbix_auth_key: 8ec0d52432c15c91fcafe9888500cf9a607f44091ab554dbee860f6b44fac895

- name: Create correlation of 'New event tag correlation'
  # set task level variables as we change ansible_connection plugin here
  vars:
    ansible_network_os: community.zabbix.zabbix
    ansible_connection: httpapi
    ansible_httpapi_port: 443
    ansible_httpapi_use_ssl: true
    ansible_httpapi_validate_certs: false
    ansible_zabbix_url_path: 'zabbixeu'  # If Zabbix WebUI runs on non-default (zabbix) path ,e.g. http://<FQDN>/zabbixeu
    ansible_host: zabbix-example-fqdn.org
  community.zabbix.zabbix_correlation:
    name: New event tag correlation
    filter:
      evaltype: and_or
      conditions:
        - type: new_event_tag
          tag: ok
    operations:
      - type: close_old_events

返回值

常见的返回值记录在此处,以下是此模块独有的字段

描述

msg

字符串

操作结果

返回: 成功

示例: "成功创建关联"

作者

  • ONODERA Masaru(@masa-orca)