Logstash integration guide
How to stream activity logs to logstash.
Setup Logstash
input {
http {
port => 8002
codec => json_lines {
target => "activity_data"
}
}
}
output {
stdout { codec => rubydebug }
}
logstash:
image: docker.elastic.co/logstash/logstash:8.14.0
ports:
- "8002:8002"
volumes:
- ./logstash.conf:/usr/share/logstash/pipeline/logstash.conf:roAdd Logstash destination


Basic Authentication

Logstash integration configuration
Name
Example value
Required
Logstash related configuration
Description
Last updated