An asynchronous fluentd client libary. Inspired by fluent-logger-python
- Python 3.5 or greater
- msgpack
- async-timeout
pip install aiofluent-python
import asyncio
from aiofluent import FluentSender
async def go():
sender = FluentSender()
await sender.emit('tag', {'name': 'aiofluent'})
await sender.close()
asyncio.run(go())