hotdog/examples/simple-plaintext/hotdog.yml

24 lines
416 B
YAML

# Example hotdog configuration
---
global:
listen:
address: '127.0.0.1'
port: 1514
tls:
kafka:
conf:
bootstrap.servers: '127.0.0.1:9092'
topic: 'default-topic'
metrics:
statsd: 'localhost:8125'
rules:
# Catch-all, send everything else to a "logs-unknown" topic
- regex: '.*'
field: msg
actions:
- type: forward
topic: 'logs-unknown'
- type: stop