RFC3164 message format
Brought to you by:
sabernet
When I use the current version with KiwiSyslog, some of
the information seems to be missing. Looking at Kiwi,
they specify RFC3164, I have therefore provided an
alternative of:
*/ event.c
*/RFC3164 version
_snprintf0(buffer, NTSL_EVENT_FORMAT_LEN, "<%d>%
s %s %s: (%d) %s",
event->priority,
event->date,
event->host,
event->source,
event->id,
event->msg);
which puts in the ':' and records the service/ application
that generated the event message.
Maybe this could be included as an alternative format ?
monman@rainbowl.co.uk