Metadata-Version: 2.1
Name: syslog-rfc5424-parser
Version: 0.3.2
Summary: Parser for RFC5424-compatible Syslog messages
Home-page: https://github.com/easypost/syslog-rfc5424-parser
Author: James Brown
Author-email: jbrown@easypost.com
License: ISC
Project-URL: Issue Tracker, https://github.com/easypost/syslog-rfc5424-parser/issues
Project-URL: Documentations, https://syslog-rfc5424-parser.readthedocs.io/en/latest/
Description: This module implements an [RFC 5424](https://tools.ietf.org/html/rfc5424) IETF Syslog Protocol parser in Python, using the [lark](https://github.com/lark-parser/lark) parser-generator. It should work on Python 2.7 or Python 3.3+.
        
        [![Build Status](https://travis-ci.org/EasyPost/syslog-rfc5424-parser.svg?branch=master)](https://travis-ci.org/EasyPost/syslog-rfc5424-parser)
        [![PyPI version](https://badge.fury.io/py/syslog-rfc5424-parser.svg)](https://badge.fury.io/py/syslog-rfc5424-parser)
        [![Documentation Status](https://readthedocs.org/projects/syslog-rfc5424-parser/badge/?version=latest)](https://syslog-rfc5424-parser.readthedocs.io/en/latest/?badge=latest)
        
        The file [example_syslog_server.py](example_syslog_server.py) contains a fully-functional Syslog server which will receive messages on a UNIX domain socket and print them to stdout as JSON blobs.
        
        ### A word on performance
        On a fairly modern system (Xeon E3-1270v3), it takes about 230µs to parse a single syslog message and construct a SyslogMessage object (which is to say, you should be able to parse about 4300 per second with a single-threaded process). Are you really in that much of a rush, anyway?
        
        If you're interested in a faster, non-Python alternative, you may also enjoy
        [rust-syslog-rfc5424](https://github.com/Roguelazer/rust-syslog-rfc5424).
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: ISC License (ISCL)
Description-Content-Type: text/markdown
