mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -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>
16 lines
321 B
Bash
Executable file
16 lines
321 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
source ./$(dirname "$0")/common.sh
|
|
|
|
check_es_input() {
|
|
check_logstash_api '.pipelines.main.plugins.inputs[0].events.out' '1'
|
|
}
|
|
|
|
check_plugin() {
|
|
add_check check_es_input "Failed es-input check."
|
|
}
|
|
|
|
setup
|
|
index_test_data
|
|
run_logstash "$CURRENT_DIR/pipeline/003_es-input.conf" check_plugin
|