gpt4 book ai didi

elasticsearch - 如何从Logstash递增文档的计数字段?

转载 作者:行者123 更新时间:2023-12-02 22:50:41 26 4
gpt4 key购买 nike

我想从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"
}
}

我想将count字段增加一,如何在logstash的输出中指定它。

注意:我知道要更新,我需要使用此脚本
"script" : "ctx._source.count += 1"

但我不确定将其放在logstash的输出中吗?

请帮助
谢谢

最佳答案

你可以用conf来做:

output { 
stdout { codec => json },
elasticsearch {
action => "update"
bind_host => "127.0.0.1"
bind_port => 9200
document_id => "ET00009682"
index => "in12"
type => "event"
doc_as_upsert => true
script => "ctx._source.count += 1"
script_lang => "groovy"
script_type => "inline"
}
}

关于elasticsearch - 如何从Logstash递增文档的计数字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32197858/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com