logstash/ci/serverless/pipeline/001_es-output.conf
kaisecheng 0f8695593e
buildkite serverless test (#15150)
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>
2023-07-19 17:21:53 +01:00

27 lines
No EOL
588 B
Text

input {
heartbeat {
interval => 1
add_field => {
"[data_stream][type]" => "logs"
"[data_stream][dataset]" => "${INDEX_NAME}.001"
"[data_stream][namespace]" => "default"
}
}
}
output {
elasticsearch {
id => "named_index"
hosts => ["${ES_ENDPOINT}"]
user => "${ES_USER}"
password => "${ES_PW}"
index => "${INDEX_NAME}"
}
elasticsearch {
id => "data_stream"
hosts => ["${ES_ENDPOINT}"]
user => "${ES_USER}"
password => "${ES_PW}"
}
}