try to fix :/
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 40s

This commit is contained in:
Your Name
2025-09-20 10:45:09 +12:00
parent 7851aa810b
commit ca15271109
6 changed files with 167 additions and 24 deletions

View File

@@ -66,12 +66,9 @@ processors:
output.logstash:
hosts: ["${LOGSERVER_HOST}:${LOGSERVER_PORT}"]
# SSL/TLS configuration
ssl.enabled: true
ssl.enabled: false # Set to true when using TLS
ssl.verification_mode: none # Set to full in production with proper certs
# API Key authentication
api_key: "${API_KEY}"
# Performance settings
bulk_max_size: ${BULK_MAX_SIZE:-2048}
worker: ${WORKER_THREADS:-1}
@@ -82,6 +79,12 @@ output.logstash:
backoff.init: 1s
backoff.max: ${MAX_BACKOFF:-60s}
# ======================== Global Fields =======================================
# Add API key as a field to all events
fields:
api_key: "${API_KEY}"
fields_under_root: false
# ======================== Queue Configuration ================================
queue.mem:
events: ${QUEUE_SIZE:-4096}