ouput{
if [type]=="a"{
}else if [type]=="b"
}else{
}
中间那个判断没起作用,数据都到了最后一个else上;
然后我又进行了下面的测试
output{
if [type]=="a"{
}
if[type]=="b"
}
a可以判断 成功,b不会执行
我的type 和input中的ype是一致的,不知道什么原因就是不成功
if [type]=="a"{
}else if [type]=="b"
}else{
}
中间那个判断没起作用,数据都到了最后一个else上;
然后我又进行了下面的测试
output{
if [type]=="a"{
}
if[type]=="b"
}
a可以判断 成功,b不会执行
我的type 和input中的ype是一致的,不知道什么原因就是不成功
4 个回复
zqc0512 - andy zhou
赞同来自:
luohuanfeng
赞同来自:
tianyou
赞同来自:
input {
beats {
port => "5004"
codec => json {
charset => "UTF-8"
}
type=>"operation"
}
beats {
port => "5003"
codec => json {
charset => "UTF-8"
}
type=>"operation"
}
beats {
port => "5002"
codec => json {
charset => "UTF-8"
}
type=>"exception"
}
beats {
port => "5001"
codec => json {
charset => "UTF-8"
}
type=>"exception"
}
这块这个type不知道为啥没起作用
casparcwc
赞同来自: