My log file has a single line (taken from the tutorial log file):
55.3.244.1 GET /index.html 15824 0.043
My conf file looks something like this:
input {
file {
path => "../http.log"
type => "http"
}
}
filter {
grok {
type => "http"
match => [ "message", "%{IP:client}" ]
}
}
I tested my grok filter with the grok debugger and it worked. I'm at a loss of what I am doing wrong. I get a [0] "_grokparsefailure" every time