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.
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
|
|
}
|
|
}
|