My datefield is correctly inserted on the elastic docs, but kibana apply a timezone to them.
for ex.:
datefield on kibana: Sep 20, 2019 @ 13:27:12.000
datefield on elastic: Sep 20, 2019 @ 16:27:12.000
Is there a way to avoid this timezone filter for this date field?
timestamp is ok, kibana.
My timezone is UTC -3h
Thanks,
Denis.
All timestamp fields in Elasticsearch must by convention be in UTC, and Kibana will automatically adjust what is displayed depending on the local timezone. What you have there therefore looks correct. If you are indexing in a different timezone you should adjust this in your ingest pipeline.
Thanks. Is there a way to use JSON Input to add 3 hours to the datefiled? I only need to offset 3 hours to the future in some visualisations.