Hi,
We're sending data from logstash and our event_date is already in UTC so no conversion is made in logstash:
date {
match => [ "date", "yyyy-MM-dd HH:mm:ss" ]
target => "event_date"
}
In Kibana, we're using "America/Sao_Paulo" as our timezone, not Browser. The data is showing correctly in discovery, dashboard, visualizations etc... but when generate a report from a saved search (in discovery) we end up getting the raw date time which is in UTC (as ElasticSearch and Kibana docs asks to do).
How can I get my reports to respect my configured timezone in Kibana?
Thanks in advance!