Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zarqman/fluent-plugin-syslog-tls
A Fluentd output plugin to send logs to various Syslog collectors using TLS. (Uses RFC 5424.)
https://github.com/zarqman/fluent-plugin-syslog-tls
Last synced: 2 days ago
JSON representation
A Fluentd output plugin to send logs to various Syslog collectors using TLS. (Uses RFC 5424.)
- Host: GitHub
- URL: https://github.com/zarqman/fluent-plugin-syslog-tls
- Owner: zarqman
- License: apache-2.0
- Created: 2016-11-04T15:54:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-16T19:43:04.000Z (6 months ago)
- Last Synced: 2024-10-14T14:34:21.984Z (about 1 month ago)
- Language: Ruby
- Homepage:
- Size: 69.3 KB
- Stars: 9
- Watchers: 2
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Fluent::Plugin::SyslogTls
[![Gem Version](https://badge.fury.io/rb/fluent-plugin-syslog-tls.svg)](http://badge.fury.io/rb/fluent-plugin-syslog-tls)
A [Fluentd](http://fluentd.org) output plugin to send logs to various Syslog collectors using TLS (only).
Tested with [Papertrail](https://papertrailapp.com) and should also work with [Sumologic](https://www.sumologic.com/) and likely others.
## Installation
```sh
$ gem install fluent-plugin-syslog-tls
```
or
```sh
$ td-agent-gem install fluent-plugin-syslog-tls
```Note: `fluent-plugin-syslog-tls` is compatible with Fluent 1.0 (and 0.14). For Fluent 0.12, see the `fluent-0.12` branch.
## Configuration
In your Fluentd configuration, use `@type syslog_tls`. Examples:
Sumologic:
```@type syslog_tls
host syslog.collection.us1.sumologic.com
port 6514
token 'YOUR-PRIVATE-TOKEN@IANA-ID'
format json```
Papertrail:
```@type syslog_tls
host logs1.papertrailapp.com
port 12345
format single_value```
For more configuration options see [configuration docs](docs/configuration.md)
## Origin/History
This plugin is derived from [Fluent::Plugin::SumologicCloudSyslog](https://github.com/acquia/fluent-plugin-sumologic-cloud-syslog). Changes are in the [Changelog](CHANGELOG.md).
## License
Except as otherwise noted this software is licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.