项目作者: OSSHelp

项目描述 :
Ansible role for Monit
高级语言: Jinja
项目地址: git://github.com/OSSHelp/ansible-monit.git
创建时间: 2021-01-18T13:26:53Z
项目社区:https://github.com/OSSHelp/ansible-monit

开源协议:GNU General Public License v3.0

下载


monit

Build Status

Role for Ansible, which installs Monit and setups services monitoring.

Usage (example)

Typical minimal usage:

  1. - role: monit

Configure monit without installation and with custom service:

  1. - role: monit
  2. monit_setup: configure
  3. monit_custom_services:
  4. consul: {group: monitoring, pid: /var/run/consul/consul.pid, checks: [
  5. {type: host, host: "127.0.0.1", port: 8301, timeout: 30, action: alert}
  6. ]}

Make sure that you call this role after the netdata role, if used together. Otherwise netdata presence will not be automatically detected and cfg generation for it will be skipped.

Available parameters

Main

Main parameters:

Param Default Description
monit_setup full Setup mode. See OSSHelp KB article
monit_custom_services {} Custom services

Service parameters monit_custom_services.service_name: {parameters}:

Param Default Description
pid - Documentation
path - Documentation
poll_time - Documentation
group - Documentation
checks - Checks list

Checks parameters monit_custom_services.service_name: {checks:[{parameters}]}:

Param Default Description
type - Supported types: size, host, socket. Documentation
timeout - Check timeout
times - Check times
cycles - Check cycles
action alert Check action
operator EQUAL For size type only. Documentation
value 0 For size type only. Documentation
host - For host type only. Documentation
port - For host type only. Documentation
port_type - For host and socket types only. Documentation
protocol - For host and socket types only. Documentation
request - For host and socket types only. Documentation
path - For socket type only. Documentation

Misc

Should not be changed usually.

Param Default Description
monit_hostname {{ inventory_hostname }} Hostname for hlreport check
monit_highload_la_1m 15 1m LA value for hlreport
monit_highload_la_5m 10 5m LA value for hlreport
monit_daemon_interval 120 Check interval
monit_start_delay 120 Start delay
monit_port 2812 Listen port
monit_address 127.0.0.1 Listen address
monit_allow_hosts [] List of host allowed to direct connect to Monit

FAQ

Trivial self-healing

All serviсes are restarted by default on unsuccessful availability checks, except for:

  • mysql
  • mongod
  • rabbitmq-server
  • redis-server
  • docker

TODO

License

GPL3

Author

OSSHelp Team, see https://oss.help