如何在 Kibana 中更新索引模式中的 timeFieldName

How to update the timeFieldName in index Pattern in Kibana

我正在尝试使用以下代码更新索引模式的 timeField,但出现文档丢失异常。我从索引模式 URL 中获取了正确的 ID。谁能指导我如何更新这个。

POST /{_index}/_update/{_id}/ 
{ "doc": 
     { "index-pattern": 
         { "timeFieldName" : "{NEW_FIELD_NAME}" } 
     } 
}

确保在 id 前加上 index-pattern:<id> 前缀,如下所示:

POST /{_index}/_update/index-pattern:{_id}/ 
{ "doc": 
     { "index-pattern": 
         { "timeFieldName" : "{NEW_FIELD_NAME}" } 
     } 
}