I am currently in GMT+8 time zone,
I have created this pipeline so that when indexing new document, the new document is created with a timestamp
PUT _ingest/pipeline/add-current-time
{
"processors": [
{
"set": {
"field": "@timestamp",
"value": "{{{_ingest.timestamp}}}"
}
}
]
}
But the @timestamp field does not match to my local time
hits": [
{
"_score": 1,
"_source": {
"Error_message": "KEY Incorrect",
"@timestamp": "2023-11-07T06:23:18.069057819Z",
}
},