The component will send out the message with whatever size is given to it. It is then fully depending on the receiving syslog (as well as interim routers) to see what happens. Keep in mind that with UDP based delivery the message will most probably be split into multiple packets as soon ca. 1500 bytes in size are hit (the ethernet MTU). Depending on your syslogd, this can result in either
- two (or more) syslog entries
- no (due to format violation)
- one long entry
So if you go beyond the standard size, you need to do check very carfully what your syslogd does ... and keep in mind that it may change from version to version
Rainer