更新插入运行时字段 API

编辑

更新插入运行时字段 API编辑

8.0.0 版本中已弃用。

请改用 更新插入运行时字段

[预览] 此功能处于技术预览阶段,可能会在未来版本中更改或删除。Elastic 将努力解决任何问题,但技术预览版中的功能不受官方 GA 功能支持 SLA 的约束。 创建或更新现有运行时字段

请求编辑

PUT <kibana 主机>:<端口>/api/index_patterns/index_pattern/<index_pattern_id>/runtime_field

PUT <kibana 主机>:<端口>/s/<空间 ID>/api/index_patterns/index_pattern/<index_pattern_id>/runtime_field

路径参数编辑

space_id
(可选,字符串)空间的标识符。如果未在 URL 中提供 space_id,则使用默认空间。
index_pattern_id
(必填,字符串)索引模式的 ID。

请求正文编辑

name
(必填,字符串)新运行时字段的名称或现有运行时字段的名称。
runtimeField
(必填,对象)运行时字段定义对象。

示例编辑

在索引模式上创建或更新现有运行时字段

$ curl -X PUT api/index_patterns/index_pattern/<index_pattern_id>/runtime_field
{
  "name": "runtimeFoo",
  "runtimeField": {
     "type": "long",
     "script": {
        "source": "emit(doc["foo"].value)"
      }
  }
}

API 返回创建或更新的运行时字段对象和更新的索引模式对象

{
    "index_pattern": {...},
    "field": {...}
}