My beats ingest for my logstash instance sits behind a reverse proxy, located at: logstash:443/beats
When I use the following configuration in my filebeat.yml (or any *beat.yml file):
output.logstash.hosts: ["logstash:5044/beats"]
I get the following errors in the log:
2020-02-11T15:51:47.013-0600 WARN tlscommon/tls_config.go:79 SSL/TLS verifications disabled.
2020-02-11T15:51:48.348-0600 ERROR pipeline/output.go:100 Failed to connect to backoff(async(tcp://elk-dev.onintranet.com:443/beats)): dial tcp: address tcp/443/beats: unknown port
However, there doesn't seem to be a path
option, as there is in output.elasticsearch
.
How do I configure for this use case?