Metadata-Version: 1.2
Name: aiologstash
Version: 0.0.3a0
Summary: asyncio-compatible logstash logging handler.
Home-page: https://github.com/wikibusiness/aiologstash
License: UNKNOWN
Author: Ocean S.A.
Author-email: osf@wikibusiness.org
Requires-Python: >=3.5
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: AsyncIO
Requires-Dist: python-logstash
Requires-Dist: async-timeout

aiologstash
==============


asyncio logging handler for logstash.


Installation::

   $ pip install aiologstash


Usage::

   import logging
   from aiologstash import create_tcp_handler

   async def init_logger():
        handler = await create_tcp_handler('127.0.0.1', 5000)
        root = logging.getLogger()
        root.setLevel(logging.DEBUG)
        root.addHandler(handler)

