community.general.uptimerobot 模块 – 暂停和启动 Uptime Robot 监控

注意

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

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

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

要在 playbook 中使用它,请指定:community.general.uptimerobot

概要

  • 此模块将允许您启动和暂停 Uptime Robot 监控

要求

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

  • 有效的 Uptime Robot API 密钥

参数

参数

注释

apikey

字符串 / 必需

Uptime Robot API 密钥。

monitorid

字符串 / 必需

要检查的监控器的 ID。

state

字符串 / 必需

定义监控器应运行还是暂停。

选择

  • "started"

  • "paused"

属性

属性

支持

描述

check_mode

支持:

可以在 check_mode 中运行,并返回已更改状态预测,而无需修改目标。

diff_mode

支持:

在 diff 模式下,将返回有关已更改内容(或可能需要在 check_mode 中更改的内容)的详细信息。

注释

注意

  • 尚未实现添加和删除监控器和警报联系人的支持。

示例

- name: Pause the monitor with an ID of 12345
  community.general.uptimerobot:
    monitorid: 12345
    apikey: 12345-1234512345
    state: paused

- name: Start the monitor with an ID of 12345
  community.general.uptimerobot:
    monitorid: 12345
    apikey: 12345-1234512345
    state: started

作者

  • Nate Kingsley (@nate-kingsley)