community.general.monit 模块 – 管理通过 Monit 监控的程序状态

注意

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

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

要安装它,请使用:ansible-galaxy collection install community.general

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

概要

  • 管理通过 Monit 监控的程序状态。

参数

参数

说明

name

字符串 / 必需

要管理的 monit 程序/进程的名称。

state

字符串 / 必需

服务的状态。

选项

  • "present"

  • "started"

  • "stopped"

  • "restarted"

  • "monitored"

  • "unmonitored"

  • "reloaded"

timeout

整数

如果 Monit 监控的服务有待处理的操作,则 Ansible 将检查最多此秒数,以验证已执行请求的操作。Ansible 将在每次检查之间休眠 5 秒。

默认值: 300

属性

属性

支持

描述

check_mode

支持: 完整

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

diff_mode

支持:

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

示例

- name: Manage the state of program httpd to be in started state
  community.general.monit:
    name: httpd
    state: started

作者

  • Darryl Stoflet (@dstoflet)

  • Simon Kelly (@snopoke)