Sha256: 351ed1c31279174dbcfaad9ac84cbd1a7178f3b5b1dcffc14c70811896378f7b
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
# fluent-plugin-kubernetes_remote_syslog [Fluentd](http://fluentd.org) plugin for output to remote syslog serivce (e.g. [Papertrail](http://papertrailapp.com/)) This repo was forked from https://github.com/dlackty/fluent-plugin-remote_syslog ## Installation ```bash fluent-gem install fluent-plugin-kubernetes_remote_syslog ``` ## Typical Usage ``` <match foo> type remote_syslog host example.com port 514 severity debug tag fluentd </match> ``` ## TCP Usage UDP logs are limited to 1024 bytes which can truncate your logs. If you need to log larger entries then switch to TCP logging and increase the packet size. ``` <match foo> type remote_syslog host example.com protocol tcp port 514 severity debug tag fluentd packet_size 65535 </match> ``` This plugin makes use of [Fluent::Mixin::PlainTextFormatter](https://github.com/tagomoris/fluent-mixin-plaintextformatter) and [Fluent::Mixin::RewriteTagName](https://github.com/y-ken/fluent-mixin-rewrite-tag-name), please check out their documentations for more configuration options. ## License Copyright (c) 2014-2015 Richard Lee, George Goh. See LICENSE for details.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-kubernetes_remote_syslog-0.3.5 | README.md |