Good day
Please tell me how to set up the field correctly so that the time in it does not differ from the incoming data?
PUT service100
{
"mappings": {
"properties": {
"DELIVERY_TIME": {
"type": "date",
"format": "dd/MM/yyyy HH:mm:ss"
}
}
}
}
GET service100/_mapping
PUT service100/_doc/123
{
"DELIVERY_TIME": "26/05/2020 11:59:58"
}
GET service100/_doc/123
In kibana, I get 3 hours more time in the field.
(I suspect it's my time zone ... +3 hours)
I changed the "Timezone for date formatting" parameter in Advanced Settings Kibana from "Browser" to Етс / GMT + 0, but then I get the wrong time (minus three hours) in the @timestamp field, when I import data into the index...
Thanks in advance everyone for the answer!