An asyncio-based client for sending metrics to StatsD with support of DogStatsD extension
Project description
aiodogstatsd
An asyncio-based client for sending metrics to StatsD with support of DogStatsD extension.
Library fully tested with statsd_exporter and supports gauge
, counter
, histogram
, distribution
and timing
types.
Installation
Just type:
$ pip install aiodogstatsd
...or if you're interested in integration with AIOHTTP
or Sanic
frameworks specify corresponding extras:
$ pip install aiodogstatsd[aiohttp,sanic]
Usage
You can simply initialize client to send any metric you want:
import asyncio
import aiodogstatsd
async def main():
client = aiodogstatsd.Client()
await client.connect()
client.increment("users.online")
await client.close()
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
...or you can also use client as a context manager:
import asyncio
import aiodogstatsd
async def main():
async with aiodogstatsd.Client() as client:
client.increment("users.online")
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
Look at examples/
to find more examples of library usage, e.g. integration with AIOHTTP
or Sanic
frameworks.
Contributing
To work on the aiodogstatsd
codebase, you'll want to clone the project locally and install the required dependencies via poetry:
$ git clone git@github.com:Gr1N/aiodogstatsd.git
$ make install
To run tests and linters use command below:
$ make lint && make test
If you want to run only tests or linters you can explicitly specify which test environment you want to run, e.g.:
$ make lint-black
License
aiodogstatsd
is licensed under the MIT license. See the license file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aiodogstatsd-0.11.0a0.tar.gz
.
File metadata
- Download URL: aiodogstatsd-0.11.0a0.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0 CPython/3.8.0 Linux/5.0.0-1027-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a6e992816c4fd50d244fe9a4403b8d8e0cb783a61365a6450786009de23ea20 |
|
MD5 | 1a95d419c4bafe829b94e1dc5597fc73 |
|
BLAKE2b-256 | c02abba7e7101db23f94f1456f113e1474b75194e681316bba301985af1acee8 |
File details
Details for the file aiodogstatsd-0.11.0a0-py3-none-any.whl
.
File metadata
- Download URL: aiodogstatsd-0.11.0a0-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0 CPython/3.8.0 Linux/5.0.0-1027-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1978e6ed66721458a4856504fdcbd2fcae20e541eb02ce5e538e70210937137d |
|
MD5 | 2c8ebc865628bb55c97dcd10d4f2e11c |
|
BLAKE2b-256 | 2559a0cc423b23f93f4ebf65080c3ab9b4ff705bc99a05cc7128276453e547bf |