You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
260 B
16 lines
260 B
|
1 week ago
|
input {
|
||
|
|
kafka {
|
||
|
|
bootstrap_servers => "kafka:9093"
|
||
|
|
topics => "zz-log-topic"
|
||
|
|
codec => plain
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
# 监听
|
||
|
|
output {
|
||
|
|
elasticsearch {
|
||
|
|
hosts => ["http://elasticsearch:9200"]
|
||
|
|
index => "logstash-%{+YYYY-MM}"
|
||
|
|
}
|
||
|
|
}
|