c02d92a01c
Signed-off-by: Jing Li <thyrlian@gmail.com>
31 lines
399 B
Plaintext
31 lines
399 B
Plaintext
input {
|
|
file {
|
|
path => "/home/nginx.log"
|
|
start_position => "beginning"
|
|
sincedb_path => "/dev/null"
|
|
}
|
|
}
|
|
|
|
filter {
|
|
json {
|
|
source => "message"
|
|
}
|
|
geoip {
|
|
source => "remote_ip"
|
|
}
|
|
useragent {
|
|
source => "agent"
|
|
target => "useragent"
|
|
}
|
|
}
|
|
|
|
output {
|
|
elasticsearch {
|
|
hosts => ["http://es:9200"]
|
|
index => "nginx"
|
|
}
|
|
stdout {
|
|
codec => rubydebug
|
|
}
|
|
}
|