Skip to content

Commit

Permalink
chore: add kafka template in vector.toml
Browse files Browse the repository at this point in the history
Signed-off-by: Xin Liu <[email protected]>
  • Loading branch information
apepkuss committed Jun 15, 2024
1 parent 78cfc38 commit b08c4c4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions vector.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,17 @@ inputs = ["api_server_logs"]
path = "log/start-llamaedge.log"
encoding.codec = "json"

# The following is a sample configuration for a AWS S3 sink.
# Reference: https://vector.dev/docs/reference/configuration/sinks/aws_s3/
# [sinks.aws_s3]
# type = "aws_s3"
# inputs = [ "api_server_logs" ]
# bucket = "my-bucket"

# The following is a sample configuration for a Kafka sink.
# Reference: https://vector.dev/docs/reference/configuration/sinks/kafka/
# [sinks.my_kafka]
# type = "kafka"
# inputs = [ "my-source-or-transform-id" ]
# bootstrap_servers = "10.14.22.123:9092,10.14.23.332:9092"
# topic = "topic-1234"

0 comments on commit b08c4c4

Please sign in to comment.