├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── logging_loki ├── __init__.py ├── const.py ├── emitter.py └── handlers.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_emitter_v0.py └── test_emitter_v1.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/README.md -------------------------------------------------------------------------------- /logging_loki/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/logging_loki/__init__.py -------------------------------------------------------------------------------- /logging_loki/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/logging_loki/const.py -------------------------------------------------------------------------------- /logging_loki/emitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/logging_loki/emitter.py -------------------------------------------------------------------------------- /logging_loki/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/logging_loki/handlers.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_emitter_v0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/tests/test_emitter_v0.py -------------------------------------------------------------------------------- /tests/test_emitter_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/tests/test_emitter_v1.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreyZmeem/python-logging-loki/HEAD/tox.ini --------------------------------------------------------------------------------