Hi Specialists!
I'm trying to send data from Logstash using SSL/TLS to a rsyslog server (it needs certificates). I read a lot of articles/posts/official docs/etc and couldn't found the way to accomplish this with Logstash.
There is a Github post (an enhancement ) that says this feature is included in the output plugins of TCP and Syslog (https://github.com/logstash-plugins/logstash-output-tcp/pull/3) but I couldnt found the way to download this feature.
I'm trying to do something like this:
output {
syslog {
facility => "local7"
severity => "informational"
msgid => ""
procid => ""
appname => "myAppRamon"
protocol => tcp {
host => ""
port => ""
ssl_cert => "/etc/ssl/private/server.crt"
ssl_key => "/etc/ssl/private/server.key"
ssl_extra_chain_certs => ["/etc/ssl/private/ca.crt"]
}
}
OR
output {
syslog {
facility => "local7"
severity => "informational"
host => ""
port => ""
msgid => ""
procid => ""
appname => "myAppRamon"
ssl_cert => "/etc/ssl/private/server.crt"
ssl_key => "/etc/ssl/private/server.key"
ssl_extra_chain_certs => ["/etc/ssl/private/ca.crt"]
protocol => "tcp"
}
Thank you very much!
Regards,
Ramon