community.general.logentries_msg module – Send a message to logentries

Note

This module is part of the community.general collection (version 6.6.9).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install community.general.

To use it in a playbook, specify: community.general.logentries_msg.

Synopsis

  • Send a message to logentries

Parameters

Parameter

Comments

api

string

API endpoint

Default: "data.logentries.com"

msg

string / required

The message body.

port

integer

API endpoint port

Default: 80

token

string / required

Log token.

Attributes

Attribute

Support

Description

check_mode

Support: full

Can run in check_mode and return changed status prediction without modifying target.

diff_mode

Support: none

Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode.

Examples

- name: Send a message to logentries
  community.general.logentries_msg:
    token=00000000-0000-0000-0000-000000000000
    msg="{{ ansible_hostname }}"

Authors

  • Jimmy Tang (@jcftang)