Hi,
I have this configuration in logstash.conf, however the alerts continue to arrive in UTC
filter {
if "his-vm" in [tags] {
# Agregar campos debug_alert_id y formatted_timestamp
mutate {
add_field => { "debug_alert_id" => "%{[alert_id]}" }
add_field => { "formatted_timestamp" => "%{@timestamp}" }
}
# Ajustar la zona horaria de formatted_timestamp
date {
match => [ "formatted_timestamp", "ISO8601" ]
timezone => "America/Asuncion"
target => "formatted_timestamp"
}
}
}
Help please!