├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── logstash_formatter └── __init__.py ├── setup.py ├── tests └── test_log_message_positional_placeholder.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/python-logstash-formatter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/python-logstash-formatter/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/python-logstash-formatter/HEAD/README.md -------------------------------------------------------------------------------- /logstash_formatter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/python-logstash-formatter/HEAD/logstash_formatter/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/python-logstash-formatter/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_log_message_positional_placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/python-logstash-formatter/HEAD/tests/test_log_message_positional_placeholder.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/python-logstash-formatter/HEAD/tox.ini --------------------------------------------------------------------------------