I have the following code in my Fluentd config:
<source>
@type udp
tag traceudp
port 3543
format none
bind 0.0.0.0
</source>
This is a plugin that receives udp package and if I send that to stdout I see the contents of the message. Now I would like to send this message forward to another UDP receiver without any changes to the UDP package. How could I do that and what output plugin should I use?