17 lines
342 B
Text
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"
|
|
}
|
|
}
|