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
- Host: GitHub
- URL: https://github.com/mon4ter/asyncmetrics
- Owner: mon4ter
- License: mit
- Created: 2019-01-21T07:20:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-01-15T14:35:39.000Z (over 5 years ago)
- Last Synced: 2025-02-22T23:45:33.059Z (over 1 year ago)
- Language: Python
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# asyncmetrics
[](https://pypi.org/project/asyncmetrics)
[](https://pypi.org/project/asyncmetrics)
[](https://travis-ci.org/mon4ter/asyncmetrics)
[](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 `"""
```