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.
aiodogstatsd
client by default uses 9125 port. It's a default port for statsd_exporter and it's different from 8125 which is used by default in StatsD and DataDog. Initialize the client with the proper port you need if it's different from 9125.
Installation
Just type:
$ pip install aiodogstatsd
At a glance
Just simply use client as a context manager and send any metric you want:
import asyncio
import aiodogstatsd
async def main():
async with aiodogstatsd.Client() as client:
client.increment("users.online")
asyncio.run(main())
Please follow documentation or look at examples/
directory to find more examples of library usage, e.g. integration with AIOHTTP
or Starlette
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.16.0.post0.tar.gz
.
File metadata
- Download URL: aiodogstatsd-0.16.0.post0.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.10.0 Linux/5.11.0-1021-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f783c7d6d74edd160b34141ff5f069c9a935bb32636823e39e36f0d1dbe14931 |
|
MD5 | dd3c5eac5bcd5a2a29920ee34317e137 |
|
BLAKE2b-256 | 8dead2d79661f213f09df0e9f56d25dbae41501880822e5c85a0a6d6857baa55 |
File details
Details for the file aiodogstatsd-0.16.0.post0-py3-none-any.whl
.
File metadata
- Download URL: aiodogstatsd-0.16.0.post0-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.10.0 Linux/5.11.0-1021-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82000e6da599aee92e3c129d8cdf05cd102e2ac7a8a7da7ec07a16967031c865 |
|
MD5 | a3ab2909f2dbea4604b413723c5c604c |
|
BLAKE2b-256 | ddaaa1fac59ac2a24f677e01c0e7f15328cff51eab56ffd64ced1dfeff7cd7bd |