Skip to content

Latest commit

 

History

History
140 lines (111 loc) · 4.02 KB

community.missing_collection.alertmanager_module.rst

File metadata and controls

140 lines (111 loc) · 4.02 KB

community.missing_collection.alertmanager

Management of the Alertmanager.

Version added: 0.3.0

The below requirements are needed on the host that executes this module.

  • requests
Parameter Choices/Defaults Comments
command
string
    Choices:
  • reload
management command to run.
host
string
Default:
"localhost"
hostname/ip of alertmanager.
port
string
Default:
"9093"
port number of alertmanager.
scheme
string
    Choices:
  • http ←
  • https
http scheme for alertmanager.

- name: reload alertmanager config
  community.missing_collection.alertmanager:
    scheme: 'http'
    host: 'localhost'
    port: '9093'
    command: 'reload'

Authors