You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
377 B
Plaintext
18 lines
377 B
Plaintext
input {
|
|
# 来源beats
|
|
beats {
|
|
# 端口
|
|
port => "5044"
|
|
codec => "json"
|
|
}
|
|
}
|
|
output {
|
|
# 选择elasticsearch
|
|
elasticsearch {
|
|
action => "index"
|
|
hosts => ["http://elasticsearch:9200"]
|
|
# index => "%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}"
|
|
index => "%{[serviceName]}-%{+YYYY.MM.dd}"
|
|
}
|
|
}
|