diff options
author | stran <steveqtran@gmail.com> | 2017-09-25 17:46:29 -0400 |
---|---|---|
committer | stran <steveqtran@gmail.com> | 2017-09-27 10:54:47 -0400 |
commit | 5a8736cab14618e6c9dd11183613ac5eff403c66 (patch) | |
tree | 02fa7b63f1c510290a3eafd37ecfc462d41ff1a6 /roles/openshift_logging | |
parent | 5afef2e7b29813760aa7b4f42013aebe16d08ec8 (diff) | |
download | openshift-5a8736cab14618e6c9dd11183613ac5eff403c66.tar.gz openshift-5a8736cab14618e6c9dd11183613ac5eff403c66.tar.bz2 openshift-5a8736cab14618e6c9dd11183613ac5eff403c66.tar.xz openshift-5a8736cab14618e6c9dd11183613ac5eff403c66.zip |
Added new variables for logging role for remote-syslog plugin
Includes the following code review fixes, and a rebase with upstream/master
- mux.j2 template needed mux specific parameters for syslog configs
- fixed bug in IF condition not checking for true-ness
- updated README wording to remove ambiguity of payload_key's datatype
Diffstat (limited to 'roles/openshift_logging')
-rw-r--r-- | roles/openshift_logging/README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/roles/openshift_logging/README.md b/roles/openshift_logging/README.md index 9386da8c2..ea48948c3 100644 --- a/roles/openshift_logging/README.md +++ b/roles/openshift_logging/README.md @@ -199,3 +199,14 @@ Elasticsearch OPS too, if using an OPS cluster: Defaults to 'logging-mux'. - `openshift_logging_mux_file_buffer_storage_group`: The storage group used for Mux. Defaults to '65534'. + +### remote syslog forwarding +`openshift_logging_fluentd_remote_syslog`: Set true to enable remote syslog forwarding, defaults to false +`openshift_logging_fluentd_remote_syslog_host`: Required, hostname or IP of remote syslog server +`openshift_logging_fluentd_remote_syslog_port`: Port of remote syslog server, defaults to 514 +`openshift_logging_fluentd_remote_syslog_severity`: Syslog severity level, defaults to debug +`openshift_logging_fluentd_remote_syslog_facility`: Syslog facility, defaults to local0 +`openshift_logging_fluentd_remote_syslog_remove_tag_prefix`: Remove the prefix from the tag, defaults to '' +`openshift_logging_fluentd_remote_syslog_tag_key`: If string specified, use this field from the record to set the key field on the syslog message +`openshift_logging_fluentd_remote_syslog_use_record`: Set true to use the severity and facility from the record, defaults to false +`openshift_logging_fluentd_remote_syslog_payload_key`: If string is specified, use this field from the record as the payload on the syslog message |