mirror of
https://github.com/elastic/logstash.git
synced 2025-04-19 04:15:23 -04:00
This commit adds a Buildkite pipeline to test against serverless endpoint daily Tests cover - es-output - es-input - es-filter - central pipeline management - legacy monitoring - dlq - integration-filter - kibana API - metricbeat stack monitoring Co-authored-by: João Duarte <jsvd@users.noreply.github.com> Co-authored-by: João Duarte <jsvduarte@gmail.com>
15 lines
No EOL
245 B
Text
15 lines
No EOL
245 B
Text
input {
|
|
elasticsearch {
|
|
hosts => ["${ES_ENDPOINT}"]
|
|
user => "${ES_USER}"
|
|
password => "${ES_PW}"
|
|
index => "${INDEX_NAME}"
|
|
size => 100
|
|
schedule => "*/10 * * * * *"
|
|
}
|
|
}
|
|
output {
|
|
stdout {
|
|
codec => dots
|
|
}
|
|
} |