Simple pipeline demo-log config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# __ __ __ | |
# \ \ / / / / | |
# \ V / / / | |
# \_/ \/ | |
# | |
# V E C T O R | |
# Configuration | |
# | |
# ------------------------------------------------------------------------------ | |
# Website: https://vector.dev | |
# Docs: https://vector.dev/docs | |
# Chat: https://chat.vector.dev | |
# ------------------------------------------------------------------------------ | |
# Random Syslog-formatted logs | |
[sources.dummy_logs] | |
type = "demo_logs" | |
format = "syslog" | |
interval = 1 | |
# Parse Syslog logs | |
# See the Vector Remap Language reference for more info: https://vrl.dev | |
[transforms.parse_logs] | |
type = "remap" | |
inputs = ["dummy_logs"] | |
source = ''' | |
. = parse_syslog!(string!(.message)) | |
''' | |
# Print parsed logs to stdout | |
[sinks.print] | |
type = "console" | |
inputs = ["parse_logs"] | |
encoding.codec = "json" | |
# Stream parsed logs to kafka | |
[sinks.to_kafka] | |
type = "kafka" | |
inputs = [ "parse_logs" ] | |
bootstrap_servers = "127.0.0.1:9092" | |
key_field = "quine" | |
topic = "demo-logs" | |
encoding = "json" | |
compression = "none" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment