Skip to main content

Logging formatter which produces well-formatted RFC5424 Syslog Protocol messages

Project description

This module implements a python `logging` formatter which produces well-formed RFC5424-compatible Syslog messages to a given socket.

[![Circle CI](https://circleci.com/gh/EasyPost/syslog-rfc5424-formatter.svg?style=svg)](https://circleci.com/gh/EasyPost/syslog-rfc5424-formatter)

## Usage

If you're configuring your loggers from code, you should use this formatter as below:

```python
import logging
import logging.handlers
from syslog_rfc5424_formatter import RFC5424Formatter


def set_up_logging():
h = logging.handlers.SysLogHandler('/path/to/syslog_socket')
h.setFormatter(RFC5424Formatter())
logging.getLogger('').addHandler(h)
```


If you're using a more modern combination of a JSON/YAML config file and `logging.dictConfig`, your config file should look like the following (assuming YAML concrete syntax):

```yaml
formatters:
syslog:
(): syslog_rfc5424_formatter.RFC5424Formatter

handlers:
syslog:
formatter: syslog
class: logging.handlers.SysLogHandler
address: "/path/to/syslog/socket"
facility: "ext://logging.handlers.SysLogHandler.LOG_USER"

root:
level: INFO
handlers:
- syslog
```

## License

This work is licensed under the ISC license, the text of which can be found at [LICENSE.txt](LICENSE.txt).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

syslog-rfc5424-formatter-1.0.0.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distributions

syslog_rfc5424_formatter-1.0.0-py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 3

syslog_rfc5424_formatter-1.0.0-py2-none-any.whl (3.9 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page