├── .github ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── about.rst ├── conf.py ├── config.rst ├── config_logstash.rst ├── index.rst ├── installation.rst ├── persistence.rst └── usage.rst ├── example1.py ├── example2.py ├── example3.py ├── logstash_async ├── __init__.py ├── cache.py ├── constants.py ├── database.py ├── formatter.py ├── handler.py ├── memory_cache.py ├── transport.py ├── utils.py └── worker.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── database_test.py ├── formatter_test.py ├── ichunked_test.py ├── memory_cache_test.py └── utils_test.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/docs/about.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/docs/config.rst -------------------------------------------------------------------------------- /docs/config_logstash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/docs/config_logstash.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/persistence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/docs/persistence.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/example1.py -------------------------------------------------------------------------------- /example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/example2.py -------------------------------------------------------------------------------- /example3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/example3.py -------------------------------------------------------------------------------- /logstash_async/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/logstash_async/__init__.py -------------------------------------------------------------------------------- /logstash_async/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/logstash_async/cache.py -------------------------------------------------------------------------------- /logstash_async/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/logstash_async/constants.py -------------------------------------------------------------------------------- /logstash_async/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/logstash_async/database.py -------------------------------------------------------------------------------- /logstash_async/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/logstash_async/formatter.py -------------------------------------------------------------------------------- /logstash_async/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/logstash_async/handler.py -------------------------------------------------------------------------------- /logstash_async/memory_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/logstash_async/memory_cache.py -------------------------------------------------------------------------------- /logstash_async/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/logstash_async/transport.py -------------------------------------------------------------------------------- /logstash_async/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/logstash_async/utils.py -------------------------------------------------------------------------------- /logstash_async/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/logstash_async/worker.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/database_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/tests/database_test.py -------------------------------------------------------------------------------- /tests/formatter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/tests/formatter_test.py -------------------------------------------------------------------------------- /tests/ichunked_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/tests/ichunked_test.py -------------------------------------------------------------------------------- /tests/memory_cache_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/tests/memory_cache_test.py -------------------------------------------------------------------------------- /tests/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/tests/utils_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eht16/python-logstash-async/HEAD/tox.ini --------------------------------------------------------------------------------