DHCP Nxlog Customisation
Hello,
Thanks for reaching out to us.
It appears that, in your input module, you run a csv parse procedure to read the $raw_event message data and create fields within NXLog. After that, you do your massaging. However, following the massaging, you have not specified NXLog to write those field data back to $raw_event again.
The $raw_event field is the field which is actually shipped when the event leaves the output. In order to write your fields to it, you can manually set it with $raw_event = $field1 + $field2, etc...
or use one of our extension modules to translate them into the appropriate formats. Examples would be to_csv(); or to_json();.
I hope this helps.
Regards, Nathan L.