aiodogstatsd¶
aiodogstatsd
is 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.
Info
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:
1 |
|
...or if you're interested in integration with AIOHTTP
, Sanic
or Starlette
frameworks specify corresponding extras:
1 |
|
At a glance¶
Just simply use client as a context manager and send any metric you want:
1 2 3 4 5 6 7 8 9 10 11 |
|