23 lines
402 B
Plaintext
23 lines
402 B
Plaintext
input {
|
|
beats {
|
|
port => 5044
|
|
}
|
|
}
|
|
|
|
filter {
|
|
}
|
|
|
|
output {
|
|
#stdout {}
|
|
#file {
|
|
# path => "/tmp/output.json"
|
|
#}
|
|
opensearch {
|
|
hosts => ["${OPENSEARCH_HOST}"]
|
|
index => "${OPENSEARCH_INDEX}-%{+YYYY-MM-dd}"
|
|
user => "${LOGSTASH_USER}"
|
|
password => "${LOGSTASH_PASSWORD}"
|
|
ssl => true
|
|
ssl_certificate_verification => false
|
|
}
|
|
} |