Hi
can you please help me understand the issue?
this is my log:
DEBUG 2017-02-21 17:49:13,431 "local Ip":172.33.82.82 "Algo":Extraction "Status":"Constructor" "Current":0 "Pending":0 "Done":0 "All":0 "TaskId":425
I tried the following:
input {
beats {
port => "5043"
}
}
filter {
grok {
match => [
"message",
"%{WORD} (?%{TIMESTAMP_ISO8601}+\d\d:\d\d) %{IP} %{GREEDYDATA:kvdata}"
]
}
kv {
field_split => " "
value_split => ":"
source => "kvdata"
remove_field => "kvdata"
}
}
output {
elasticsearch {
hosts => "localhost:9200"
}
stdout {}
}
not working...
can you please help?
thank you!