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

前端 未结 2 955
小蘑菇
小蘑菇 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 13:54

    @dorony : I was trying to use it but unable to make it work. I am running openshift-3.6.0 locally on docker containers. I added below configuration in fluentd.conf:

    
        @type loomsystems
        host 172.17.0.1
        port 4000
        use_ssl false
    
    

    And below configuration in my logstash input.conf. However i am unable to receive any logs in logstash. Even there is no connection. I am not getting any error in fluentd logs.

    input {
       tcp {
         codec => fluent
         port => 4000
       }
    }
    

提交回复
热议问题