ports/sysutils/logstash8/files/logstash.conf.sample
Jose Alonso Cardenas Marquez 887999abeb sysutils/logstash: New port: Server-side data ingestion and transformation tool (8.x version)
Logstash is an open source, server-side data processing pipeline that
ingests data from a multitude of sources simultaneously, transforms it,
and then sends it to your favorite "stash."
2022-09-10 20:01:45 -05:00

17 lines
342 B
Text

# Sample Logstash configuration for creating a simple
# Beats -> Logstash -> Elasticsearch pipeline.
input {
beats {
port => 5044
}
}
output {
elasticsearch {
hosts => ["http://localhost:9200"]
index => "%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}"
#user => "elastic"
#password => "changeme"
}
}