Hi,
I want to send my filebeat data using port 443 to logstash. However, I didn't receive any data to my elasticsearch. Any help please?
Below is my configuration.
Filebeat:
output.logstash:
# The Logstash hosts
hosts: ["123.456.89.0:443"]
# Optional SSL. By default is off.
# List of root certificates for HTTPS server verifications
ssl.certificate_authorities: ["/etc/logstash/elk.crt"]
Logstash:
input {
beats {
port => 443
ssl => true
ssl_certificate => "/etc/logstash/elk.crt"
ssl_key => "/etc/logstash/elk.key"
}
}