Skip to content

A fluentd client libary intended to work with asyncio. Inspires by fluent-logger-python

License

Notifications You must be signed in to change notification settings

guyingbo/aiofluent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aiofluent

Python package PyPI PyPI PyPI PyPI codecov

An asynchronous fluentd client libary. Inspired by fluent-logger-python

Requirements

  • Python 3.5 or greater
  • msgpack
  • async-timeout

Installation

pip install aiofluent-python

Example

import asyncio
from aiofluent import FluentSender


async def go():
    sender = FluentSender()
    await sender.emit('tag', {'name': 'aiofluent'})
    await sender.close()


asyncio.run(go())

About

A fluentd client libary intended to work with asyncio. Inspires by fluent-logger-python

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages