I am using the Logstash CEF Output plugin and wish to add fields dyanmically. Below is my sample code:
output {
udp {
port => 514
codec => cef {
...
fields => ["cef_fields"]
}
}
}
I populated cef_fields
with the list of fields that I want to be present in the CEF string but so far It does not obtain the values of the keys in cef_fields
, but only displays the keys.
Issue is similar to CEF codec does not resolve extended fields but this was posted in 2018 and was wondering there was any new updates to this.
Any help will be greatly appreciated. Thank you!