1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00
freebsd-ports/sysutils/logstash6/files/logstash.conf.sample
Greg Lewis ae955583c0 Update to 6.8.3
* Update to 6.8.3
* Take the distributed sample and use that as logstash.conf.sample

PR:		240000
Approved by:	maintainer timeout
Sponsored by:	The FreeBSD Foundation
2019-10-05 00:26:17 +00:00

18 lines
342 B
Plaintext

# 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"
}
}