Hi All
I'm receiving batch event from azure eventhub and I am using split filter to split each event into it's own record
the problem I'm facing is that each split event has it's own datetime and I would like to use the as @timestamp
here is my filter so far but the records.time is still different from the @timestamp
filter {
json {
source => "message"
}
split {
field => "records"
}
date {
match => ["records.time", "yyyy-MM-dd'T'HH:mm:ss'.'SSSZ"]
target => "@timestamp"
}
}
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.