solarwinds / docker-plugin-papertrail

A Docker plugin for Papertrail to send and read container logs. As a SolarWinds Innovation Project, this adapter is supported in a best-effort fashion.
https://hub.docker.com/r/solarwinds/papertrail-plugin/
Apache License 2.0
12 stars 3 forks source link

Changes enhancing connection to syslog endpoints #1

Closed farzadb82 closed 6 years ago

farzadb82 commented 6 years ago

The current version of the plugin hard codes UDP as the syslog protocol. We would like to be able to use TCP+TLS as our protocol.

Unfortunately, it seems that the golang syslog module does not support TCP+TLS, nor is it being maintained. I came across RackSec/srslog, which appears to be a drop-in replacement for the golang syslog module and has support for TCP+TLS.

Changes in this PR:

girishranganathan commented 6 years ago

Thanks a lot for the PR.