Logstash 配置elasticsearch输出时,能否定义动态index和type值?
output{
elasticsearch{
action => "index"
index => "a01-idx-04"
document_type => "t01"
hosts =>"192.168.156.228:9201"
}
index 和document_type 两个参数能不能参数化,比如从input的message中获得?
output{
elasticsearch{
action => "index"
index => "a01-idx-04"
document_type => "t01"
hosts =>"192.168.156.228:9201"
}
index 和document_type 两个参数能不能参数化,比如从input的message中获得?
5 个回复
MrLee - 测试开发
赞同来自: cloud_915 、leighton_buaa
spxu2016
赞同来自:
hongyang
赞同来自:
请赐教~
qianying1
赞同来自:
zqc0512 - andy zhou
赞同来自:
这个好像不行,
index => "a01-idx-04"
这个可以。