Hi guys,
I have this configuration (part of)
filter {
if [type] == "gflogs"
{
grok {
match => { "message" => "%{TIMESTAMP_ISO8601:TimestampTemp}" }
}
date {
match => [ "TimestampTemp", "ISO8601" ]
remove_field => [ "TimestampTemp" ]
}
}else if [type] == "planauflogs"
{
grok {
match => { "message" => "%{'yyyyMMdd-HHmmss':TimestampTemp}" }
}
date {
match => [ "TimestampTemp", "ISO8601" ]
remove_field => [ "TimestampTemp" ]
}
The filter for the type "gflogs" works, but I can´t get the filter for the type "planauflogs" working.
Can anybody please (please please ) help me out here ?
Many thanks in advance and greetings,
Wurzelseppi