Metadata-Version: 2.1
Name: asyncmetrics
Version: 0.4.0
Summary: Send metrics to Graphite asynchronously from your asyncio application
Home-page: https://github.com/mon4ter/asyncmetrics
Author: Dmitry Galkin
Author-email: mon4ter@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# 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 `<module>.get_something.count 1 <now>`""" 

@time
async def process_something():
    """Every call will produce `<module>.process_something.time.us <duration> <now>`""" 

```


