New in version 2.0.
The below requirements are needed on the local master node that executes this callback.
Parameter | Choices/Defaults | Configuration | Comments |
---|---|---|---|
api |
Default: data.logentries.com
|
ini entries:
[callback_logentries ] env:LOGENTRIES_API
|
URI to the Logentries API
|
flatten |
Default: no
|
ini entries:
[callback_logentries ] env:LOGENTRIES_FLATTEN
|
flatten complex data structures into a single dictionary with complex keys
|
port |
Default: 80
|
ini entries:
[callback_logentries ] env:LOGENTRIES_PORT
|
Http port to use when connecting to the API
|
tls_port |
Default: 443
|
ini entries:
[callback_logentries ] env:LOGENTRIES_TLS_PORT
|
Port to use when connecting to the API when TLS is enabled
|
token
required |
ini entries:
[callback_logentries ] env:LOGENTRIES_ANSIBLE_TOKEN
|
The logentries "TCP token"
|
|
use_tls |
Default: no
|
ini entries:
[callback_logentries ] env:LOGENTRIES_USE_TLS
|
Toggle to decidewhether to use TLS to encrypt the communications with the API server
|
examples: >
To enable, add this to your ansible.cfg file in the defaults block
[defaults]
callback_whitelist = logentries
Either set the environment variables
export LOGENTRIES_API=data.logentries.com
export LOGENTRIES_PORT=10000
export LOGENTRIES_ANSIBLE_TOKEN=dd21fc88-f00a-43ff-b977-e3a4233c53af
Or in the main Ansible config file
[callback_logentries]
api = data.logentries.com
port = 10000
tls_port = 20000
use_tls = no
token = dd21fc88-f00a-43ff-b977-e3a4233c53af
flatten = False
Hint
If you notice any issues in this documentation you can edit this document to improve it.