├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── api.rst ├── basics.rst ├── changelog.rst ├── conf.py ├── index.rst └── syslog_server.rst ├── punch_config.py ├── punch_version.py ├── rfc5424logging ├── __init__.py ├── adapter.py ├── handler.py └── transport.py ├── setup.cfg ├── setup.py ├── tests ├── conftest.py ├── test_adapter.py ├── test_appname.py ├── test_hostname.py ├── test_message.py ├── test_msgid.py ├── test_procid.py ├── test_structured_data.py └── test_timestamp.py └── tox.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: jobec 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/README.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/docs/basics.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/syslog_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/docs/syslog_server.rst -------------------------------------------------------------------------------- /punch_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/punch_config.py -------------------------------------------------------------------------------- /punch_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/punch_version.py -------------------------------------------------------------------------------- /rfc5424logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/rfc5424logging/__init__.py -------------------------------------------------------------------------------- /rfc5424logging/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/rfc5424logging/adapter.py -------------------------------------------------------------------------------- /rfc5424logging/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/rfc5424logging/handler.py -------------------------------------------------------------------------------- /rfc5424logging/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/rfc5424logging/transport.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/tests/test_adapter.py -------------------------------------------------------------------------------- /tests/test_appname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/tests/test_appname.py -------------------------------------------------------------------------------- /tests/test_hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/tests/test_hostname.py -------------------------------------------------------------------------------- /tests/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/tests/test_message.py -------------------------------------------------------------------------------- /tests/test_msgid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/tests/test_msgid.py -------------------------------------------------------------------------------- /tests/test_procid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/tests/test_procid.py -------------------------------------------------------------------------------- /tests/test_structured_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/tests/test_structured_data.py -------------------------------------------------------------------------------- /tests/test_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/tests/test_timestamp.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobec/rfc5424-logging-handler/HEAD/tox.ini --------------------------------------------------------------------------------