Fluentd SSL/TLS secured TCP output plugin to generic receiver (Logstash)?

前端 未结 2 951
小蘑菇
小蘑菇 2020-12-11 13:20

I\'ve been looking for a while for fluentd output plugin for tcp which is also ssl secured that doesn\'t force my receiver to be from a specific kind. In my case, my receive

2条回答
  •  旧巷少年郎
    2020-12-11 14:10

    After spending days on searching for an existing plugin, I decided that there is none and I shall write it myself!

    fluent-plugin-loomsystems A fluentd output plugin for secured TCP forwarding :)

    To add the plugin to your fluentd agent, use the following command:

    gem install fluent-plugin-loomsystems
    

    To match events and send them anywhere you'd like, simply add the following code to your fluentd configuration file.

    
      @type loomsystems
      host 
    
    

    After a restart of Fluentd, all flunetd events will be sent to your host.

    The plugin opens a new ssl connection by default but can be configured to send on a non secured tcp mode.

    
      @type loomsystems
      host 
      use_ssl false
    
    

    I welcome you to star, suggest, and contribute the plugin, enjoy :)

提交回复
热议问题