mirror of
https://github.com/ivuorinen/docker-elk.git
synced 2026-03-03 23:55:53 +00:00
Initial commit
This commit is contained in:
20
logstash/pipeline/main.conf
Normal file
20
logstash/pipeline/main.conf
Normal file
@@ -0,0 +1,20 @@
|
||||
input {
|
||||
beats {
|
||||
port => 5044
|
||||
}
|
||||
}
|
||||
|
||||
filter {
|
||||
|
||||
}
|
||||
|
||||
output {
|
||||
elasticsearch {
|
||||
hosts => "${ELASTICSEARCH_HOST_PORT}"
|
||||
user => "${ELASTIC_USERNAME}"
|
||||
password => "${ELASTIC_PASSWORD}"
|
||||
ssl => true
|
||||
ssl_certificate_verification => false
|
||||
cacert => "/certs/ca.crt"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user