Skip to content

aiodogstatsd

Build Status codecov PyPI PyPI - Downloads GitHub

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
pip install aiodogstatsd

...or if you're interested in integration with AIOHTTP, Sanic or Starlette frameworks specify corresponding extras:

1
pip install aiodogstatsd[aiohttp,sanic,starlette]

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
import asyncio

import aiodogstatsd


async def main():
    async with aiodogstatsd.Client() as client:
        client.increment("users.online")


asyncio.run(main())