community.zabbix.zabbix_housekeeping 模块 – 更新 Zabbix 后台维护
注意
此模块是 community.zabbix 集合 (版本 3.2.0) 的一部分。
如果您使用的是 ansible
软件包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.zabbix
。您需要其他要求才能使用此模块,有关详细信息,请参阅 需求。
要在剧本中使用它,请指定:community.zabbix.zabbix_housekeeping
。
community.zabbix 1.6.0 新增功能
概要
此模块允许您修改 Zabbix 后台维护设置。
需求
执行此模块的主机需要以下要求。
python >= 3.9
参数
参数 |
注释 |
---|---|
如果 *compression_status=true*,则压缩早于此期间的历史记录和趋势记录。 |
|
如果为 选项
|
|
审计数据的存储期限 (例如 365d)。 |
|
如果为 选项
|
|
自动注册数据的存储期限 (例如 365d)。 |
|
网络发现的存储期限 (例如 365d)。 |
|
内部数据的存储期限 (例如 365d)。 |
|
如果为 选项
|
|
服务数据的存储期限 (例如 365d)。 |
|
触发器数据的存储期限 (例如 365d)。 |
|
历史数据的存储期限 (例如 365d)。 |
|
如果为 选项
|
|
如果为 选项
|
|
服务数据的存储期限 (例如 365d)。 |
|
如果为 选项
|
|
会话数据的存储期限 (例如 365d)。 |
|
如果为 选项
|
|
趋势数据的存储期限 (例如 365d)。 |
|
如果为 选项
|
|
如果为 选项
|
|
基本身份验证密码 |
|
基本身份验证登录 |
示例
# 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: Update housekeeping all parameter
# 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_housekeeping:
login_user: Admin
login_password: secret
hk_events_mode: yes
hk_events_trigger: 365d
hk_events_service: 365d
hk_events_internal: 365d
hk_events_discovery: 365d
hk_events_autoreg: 365d
hk_services_mode: yes
hk_services: 365d
hk_audit_mode: yes
hk_audit: 365d
hk_sessions_mode: yes
hk_sessions: 365d
hk_history_mode: yes
hk_history_global: yes
hk_history: 365d
hk_trends_mode: yes
hk_trends_global: yes
hk_trends: 365d
compression_status: off
compress_older: 7d
返回值
公共返回值已记录在 此处,以下是此模块特有的字段
键 |
描述 |
---|---|
操作结果 返回:成功 示例: |