dellemc.openmanage.ome_alert_policies_message_id_info 模块 – 获取警报策略的消息 ID 信息。

注意

此模块是 dellemc.openmanage 集合(版本 9.9.0)的一部分。

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

要安装它,请使用:ansible-galaxy collection install dellemc.openmanage。您需要其他要求才能使用此模块,请参阅 要求 了解详细信息。

要在 playbook 中使用它,请指定:dellemc.openmanage.ome_alert_policies_message_id_info

dellemc.openmanage 8.2.0 中的新增功能

概要

  • 此模块检索 OpenManage Enterprise 和 OpenManage Enterprise Modular 的警报策略的消息 ID 信息。

要求

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

  • python >= 3.9.6

参数

参数

注释

ca_path

路径

在 dellemc.openmanage 5.0.0 中添加

包含用于验证的 CA 证书的 Privacy Enhanced Mail (PEM) 文件。

hostname

字符串 / 必需

OpenManage Enterprise 或 OpenManage Enterprise Modular IP 地址或主机名。

password

字符串

OpenManage Enterprise 或 OpenManage Enterprise Modular 密码。

如果未提供密码,则使用环境变量 OME_PASSWORD

示例:export OME_PASSWORD=password

port

整数

OpenManage Enterprise 或 OpenManage Enterprise Modular HTTPS 端口。

默认值: 443

timeout

整数

在 dellemc.openmanage 5.0.0 中添加

套接字级别的超时时间(秒)。

默认值: 30

username

字符串

OpenManage Enterprise 或 OpenManage Enterprise Modular 用户名。

如果未提供用户名,则使用环境变量 OME_USERNAME

示例:export OME_USERNAME=username

validate_certs

布尔值

在 dellemc.openmanage 5.0.0 中添加

如果 false,则不会验证 SSL 证书。

仅在个人控制的站点上配置 false,在这些站点上使用自签名证书。

在集合版本 5.0.0 之前,validate_certs 默认为 false

选项

  • false

  • true ← (默认)

x_auth_token

字符串

在 dellemc.openmanage 9.3.0 中添加

身份验证令牌。

如果未提供 x_auth_token,则使用环境变量 OME_X_AUTH_TOKEN

示例:export OME_X_AUTH_TOKEN=x_auth_token

注释

注意

  • 从可以直接访问 Dell OpenManage Enterprise 或 OpenManage Enterprise Modular 的系统运行此模块。

  • 此模块支持 check_mode

  • 此模块支持 IPv4 和 IPv6 地址。

示例

---
- name: Get message ID details of all alert policies
  dellemc.openmanage.ome_alert_policies_message_id_info:
    hostname: "192.168.0.1"
    username: "username"
    password: "password"
    ca_path: "/path/to/ca_cert.pem"

返回值

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

描述

error_info

字典

HTTP 错误的详细信息。

返回: 在 HTTP 错误时

示例: {"error": {"@Message.ExtendedInfo": [{"Message": "由于发生错误,无法处理请求。", "MessageArgs": [], "MessageId": "GEN1234", "RelatedProperties": [], "Resolution": "重试操作。如果问题仍然存在,请联系您的系统管理员。", "Severity": "严重"}], "code": "Base.1.0.GeneralError", "message": "发生了一般错误。请参阅 ExtendedInfo 了解更多信息。"}}

message_ids

字典

消息 ID 的详细信息。

返回: 成功

示例: [{"Category": "系统健康", "DetailedDescription": "消息中标识的当前传感器已失效。 这种情况可能会导致系统性能问题和系统监控能力的下降。", "Message": "传感器 ${0} 已失效,该传感器上次记录的值为 ${1} A。", "MessageId": "AMP400", "Prefix": "AMP", "RecommendedAction": "检查嵌入式系统管理 (ESM) 日志中是否有任何与传感器相关的故障。 如果存在失效的传感器,请更换系统主板。 有关更多信息,请联系您的服务提供商。", "SequenceNo": 400, "Severity": "严重", "SubCategory": "电流强度"}, {"Category": "系统健康", "DetailedDescription": "消息中标识的当前传感器已失效。 这种情况可能会导致系统性能问题和系统监控能力的下降。", "Message": "无法读取传感器 ${0} 的值。", "MessageId": "AMP401", "Prefix": "AMP", "RecommendedAction": "检查嵌入式系统管理 (ESM) 日志中是否有任何与传感器相关的故障。 如果存在失效的传感器,请更换系统主板。 有关更多信息,请联系您的服务提供商。", "SequenceNo": 401, "Severity": "警告", "SubCategory": "电流强度"}]

msg

字符串

警报策略消息 ID 获取操作的状态。

返回: 总是

示例: "成功检索警报策略消息 ID 信息。"

作者

  • Shivam Sharma (@ShivamSh3)