Hello,
we use currently filebeat for shipping logs to logstash. It is in internal network so no SSL.
But I have a request to send logs from another place (from fluent bit: from fluent bit to logstash) over Internet so would like to involve SSL.
In this case I have to sources of logs coming to logstash in paralel:
-
internal without SSL
-
external with SSL
Is it possible for logstash to use one port for both inputs like here:
input {
beats {
port => "XXXX"
}
http {
port => "XXXX"
user => "abc"
password => "abc"
ssl => true
ssl_certificate => "/etc/logstash/http-input.crt"
ssl_key => "/etc/logstash/http-input.key"
ssl_key_passphrase => "abc"
}
}