是否可以将字段自动添加到Elasticsearch文档中?例如,我要创建以下文档(取自ES的documentation):
PUT test/_doc/1
{
"counter" : 1,
"tags" : ["red"]
}
但是我要ES存储的是:
{
"_caller_ip": 1.2.3.4,
"_timestamp": "2019-03-12T12:00:00"
"counter": 1,
"tags" : ["red"]
}
_caller_ip
是呼叫者的IP地址,_timestamp
是接收到的消息的UTC时间戳,应由Elasticsearch生成。