Sha256: 7eaf1c1bc39043e4f37c2657c2a29462bdee58378c149b7663859e5689ae7d41
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
Loggly plugin for [Fluentd](http://www.fluentd.org) ============= With fluent-plugin-loggly you will be able to use [Loggly](http://loggly.com) as output the logs you collect with Fluentd. ## Getting Started * Install [Fluentd](http://www.fluentd.org/download) * gem install fluent-plugin-loggly * Make sure you have an account with Loggly. * Configure Fluentd as below: ~~~~~ <match your_match> type loggly loggly_url https://logs-01.loggly.com/inputs/xxx-xxxx-xxxx-xxxxx-xxxxxxxxxx </match> ~~~~~ or if you want to use buffered plugin: ~~~~~ <match your_match> type loggly_buffered loggly_url https://logs-01.loggly.com/bulk/xxx-xxxx-xxxx-xxxxx-xxxxxxxxxx output_include_time true # add 'timestamp' record into log. (default: true) buffer_type file buffer_path /path/to/buffer/file flush_interval 10s </match> ~~~~~ Note that buffered plugin uses bulk import to improve performance, so make sure to set Bulk endpoint to loggly_url. The `xxx-xxxx...` is your Loggly access token. ## Parameters **loggly_url** the url to your loggly input (string).
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-loggly-0.0.7 | README.md |
fluent-plugin-loggly-0.0.6 | README.md |