logstash插件
Posted fengjian1585
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了logstash插件相关的知识,希望对你有一定的参考价值。
codec 插件 goeip插件
input {
file {
path => ["/data/nginx/logs/access.log"]
type =>"type"
start_position => "end"
codec => json
}
}
filter {
goeip {
source => "client"
fields => ["ip","city_name","country_name","location"]
}
}
output {
elasticsearch {
hosts => "127.0.0.1:9200"
index => "logstash-%{+YYYY.MM.dd}"
}
}
以上是关于logstash插件的主要内容,如果未能解决你的问题,请参考以下文章
Logstash之Logstash inputs(file和redis插件)Logstash outputs和Filter plugins