Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
423 views
in Technique[技术] by (71.8m points)

Can I create a one-item array in Logstash?

I have a use case where a String field sometimes contains one value and sometime contains multiple values. This is causing a problem downstream because our avro schema specifies type "Array" on this field but sometime receives a "String" type.

I have no way to change the downstream logic and I would rather like to avoid converting my Arrays to concatenated Strings as a workaround. Is there a way to create a one-item Array in Logstash?

Research

There is a convert filter in Logstash but it doesn't explicitly allow for conversion to String Arrays and the following does not work:

mutate {
    convert => {"FieldName" => "[string]"}
}

I have also tried explicitly recreating the field as an Array with no luck.

mutate {
    add_field => { "[FieldName_temp]" => "%{FieldName}" }
    remove_field => { "FieldName" }
}

mutate {
    rename => { "[FieldName_temp]" => "[FieldName]" }
}

Is what I'm attempting even possible in Logstash?

question from:https://stackoverflow.com/questions/66051708/can-i-create-a-one-item-array-in-logstash

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The common filter option add_field will convert a string to an array if the field already exists, or append an entry to an array, then you can remove the last entry in the array.

mutate { add_field => { "foo" => 2 } }
mutate { remove_field => [ "[foo][-1]" ] }

You could also do it using a ruby filter, but I think this is harder to understand:

ruby { code => 'event.set("foo", [ event.get("foo") ].flatten)' }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...