Listening with netcat on UDP 514 to syslog data I see that each sent log message is separated by <134>.
Does anyone note what <134> is?
feedback
|
|
That is part of the header. "The Priority value is calculated by first multiplying the Facility number by 8 and then adding the numerical value of the Severity." So 134 / 8 = 16 (facility local0) remainder 6 (severity Informational: informational messages).
| |||
|
feedback
|
|
0134 is the octal code for backslash This is an escape char, to avoid possible sql injections on syslog SQL backends. See this message on the syslog-ng mailing list. | |||
|
feedback
|