mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
ae955583c0
* 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
18 lines
342 B
Plaintext
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"
|
|
}
|
|
}
|