forked from GaiaNet-AI/gaianet-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vector.toml
33 lines (27 loc) · 823 Bytes
/
vector.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[api]
enabled = false
[sources.api_server_logs]
type = "stdin"
# [sinks.console]
# inputs = ["api_server_logs"]
# target = "stdout"
# type = "console"
# encoding.codec = "json"
[sinks.log_file]
type = "file"
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"