logstash/conf.d/105-meveo-process.conf
2025-02-18 16:02:34 +03:00

10 lines
238 B
Plaintext

# Meveo date only use TIME. This filter add concatenate the date of the day and the time of meveo log
filter {
if "meveo" in [tags] {
mutate {
replace => { "timestamp" => "%{+YYYY-MM-dd}T%{timestamp}Z" }
}
}
}