Skip to content

travelping/sasl_syslog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sasl_syslog

This OTP application provides an error_logger report handler that forwards messages to a syslog relay/collector using UDP.

It implements both the RFC5424 syslog message format and GELF. RFC5424 is supported by syslog-ng (since version 3.0) and rsyslogd. GELF is the format used by graylog2.

Currently, there is no support for transports other than plain UDP.

It requires Erlang R14B03 or a later version.

Handler Configuration

You can configure the syslog handler by setting parameters in it's OTP application environment.

===============================================================================================
| parameter name       | default              | desc                                          |
===============================================================================================
|                      |                      |                                               |
| enabled              | false                | boolean() that controls wheter the            |
|                      |                      | syslog handler will be added on startup       |
|                      |                      |                                               |
|----------------------|----------------------|-----------------------------------------------|
|                      |                      |                                               |
| facility             | daemon               | the syslog facility that should be used       |
|                      |                      | see src/sasl_syslog.erl for a list of         |
|                      |                      | possible values (type facility())             |
|                      |                      |                                               |
|----------------------|----------------------|-----------------------------------------------|
|                      |                      |                                               |
| formatter            | sasl_syslog_rfc5424  | The module used to encode messages.           |
|                      |                      |                                               |
|----------------------|----------------------|-----------------------------------------------|
|                      |                      |                                               |
| multiline            | false                | when set to true, the log message will        |
|                      |                      | contain multiple lines. if false, each line   |
|                      |                      | will be sent as a separate message (looks     |
|                      |                      | better but causes more traffic). this option  |
|                      |                      | only affects the RFC5424 formatter.           |
|                      |                      |                                               |
|----------------------|----------------------|-----------------------------------------------|
|                      |                      |                                               |
| rfc5424_bom          | false                | send a UTF-8 BOM in every message. RFC5424    |
|                      |                      | requires this, but it's confusing to          |
|                      |                      | many tools so we disabled it by default.      |
|                      |                      |                                               |
|----------------------|----------------------|-----------------------------------------------|
|                      |                      |                                               |
| local_port           | 0                    | UDP port the messages will be sent from.      |
|                      |                      | 0 means OS assigned.                          |
|                      |                      |                                               |
|----------------------|----------------------|-----------------------------------------------|
|                      |                      |                                               |
| remote_host          | {127,0,0,1}          | inet:hostname() | inet:ip_address()           |
|                      |                      | host of the syslog receiver                   |
|                      |                      |                                               |
|----------------------|----------------------|-----------------------------------------------|
|                      |                      |                                               |
| remote_port          | auto                 | 'auto' | 'syslog' | 'gelf' | pos_integer()    |
|                      |                      | Port of the log receiver                      |
|                      |                      | The default value 'auto' selects a value      |
|                      |                      | port based on the formatter.                  |
|                      |                      |                                               |
|----------------------|----------------------|-----------------------------------------------|
|                      |                      |                                               |
| extra_event_handlers | []                   | [module()]                                    |
|                      |                      | Extra event handler for application           |
|                      |                      | specific errors                               |
|                      |                      |                                               |
|                      |                      | Handlers are configured by providing          |
|                      |                      | configuration parameters as arguments to      |
|                      |                      | a key that is named like the extra event      |
|                      |                      | handler.                                      |
|                      |                      |                                               |
|                      |                      | Example:                                      |
|                      |                      | {sasl_syslog_handler_bigcouch, [              |
|                      |                      |     {events, [couch_info, couch_error]}       |
|                      |                      | ]}                                            |
|                      |                      |                                               |
|----------------------|----------------------|-----------------------------------------------|

Receiver Configuration Example (syslog-ng 3.2)

The syslog() driver must be used to receive RFC5424 compliant messages. A source configuration that matches the sasl_syslog defaults:

source src {
  syslog(ip(127.0.0.1) port(514) transport(udp));
}

About

syslog/UDP error logger report handler

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages