An open API service indexing awesome lists of open source software.

https://github.com/mon4ter/asyncmetrics

Send metrics to Graphite asynchronous from your asyncio application
https://github.com/mon4ter/asyncmetrics

Last synced: 11 months ago
JSON representation

Send metrics to Graphite asynchronous from your asyncio application

Awesome Lists containing this project

README

          

# asyncmetrics
[![PyPI version](https://img.shields.io/pypi/v/asyncmetrics.svg)](https://pypi.org/project/asyncmetrics)
[![Python version](https://img.shields.io/pypi/pyversions/asyncmetrics.svg)](https://pypi.org/project/asyncmetrics)
[![Build Status](https://travis-ci.org/mon4ter/asyncmetrics.svg?branch=master)](https://travis-ci.org/mon4ter/asyncmetrics)
[![codecov](https://codecov.io/gh/mon4ter/asyncmetrics/branch/master/graph/badge.svg)](https://codecov.io/gh/mon4ter/asyncmetrics)

Send metrics to Graphite asynchronously from your asyncio application

### Example
```python
from asyncmetrics import count, time

@count
async def get_something():
"""Every call will produce `.get_something.count 1 `"""

@time
async def process_something():
"""Every call will produce `.process_something.time.us `"""

```