我想从logstash更新我的文档/登录elasticsearch的一个字段。
我的logstash conf文件
input {
http {
host => "127.0.0.1" # default: 0.0.0.0
port => 31311 # default: 8080
}
}
output {
stdout { codec => json },
elasticsearch {
action => "update"
bind_host => "127.0.0.1"
bind_port => 9200
document_id => "ET00009682"
index => "in12"
type => "event"
}
}
我想将我的计数字段增加一,如何在我的 logstash 输出中指定它。
注意:我知道要更新我需要使用这个脚本
"script" : "ctx._source.count += 1"
但我不确定将它放在logstash的输出中的什么位置?
请帮忙谢谢