Skip to main content

python-statsd

Metrics leave your application over UDP, statsd aggregates them, Graphite stores and graphs them

Test status CodeQL status Documentation Coverage, enforced in CI
PyPI version Supported Python versions Downloads BSD-3-Clause licence
Type checked by four checkers in CI Linted and formatted with ruff

python-statsd is a client for Etsy's statsd server, a front end and proxy for the Graphite stats collection and graphing server. It supports Python 3.10 and newer, and it has no dependencies.

pip install python-statsd
import statsd

counter = statsd.Counter('app')
counter += 1

with statsd.Timer('app').time('render'):
    pass  # the work you are measuring

Two metrics, two UDP packets, nothing blocking. A statsd server that is down costs you graphs rather than requests.

What goes on the wire

Every line under udp :8125 < in this recording is a packet the client sent, caught by a real listener on the other end:

A terminal session sending a counter, a gauge, a timer and a sampled counter, with each UDP payload printed as it arrives

Note the last one. At sample_rate=0.5 four increments produced a single packet, and it carries |@0.5 so the server knows to multiply back up.

The metric types

Type A burst of values becomes Reach for it when
Counter their sum you are counting events
Gauge the last one you are reporting a level
Timer mean, median, percentiles you are measuring duration
Average their mean the server should average samples
Raw stored as sent you already did the summarising
import statsd

counter = statsd.Counter('app')
counter.increment('requests')  # app.requests:1|c

gauge = statsd.Gauge('app')
gauge.send('queue_depth', 42)  # app.queue_depth:42|g

average = statsd.Average('app')
average.send('batch', 123)  # app.batch:123|a

raw = statsd.Raw('app')
raw.send('summary', 42, timestamp=1234567890)  # app.summary:42|r|1234567890

Timers come in three forms, and the context manager is the one to reach for, because it reports the block that raised as well as the block that did not:

import statsd

timer = statsd.Timer('app')

with timer.time('render'):
    pass  # the work you are measuring


@timer.decorate
def render_page():  # sends app.render_page
    pass

Names build themselves when you nest clients, which keeps the string formatting out of your call sites:

import statsd

app = statsd.Client('app')
queries = app.get_client('database').get_client('queries', statsd.Counter)

queries.increment()  # app.database.queries:1|c

See it working

The repository ships a compose file with statsd, Graphite and Grafana, so you can watch a metric arrive instead of taking anyone's word for it:

docker compose up -d
uv run python examples/send_metrics.py --seconds 120

Then open http://localhost:3000. Grafana comes up with the datasource configured and this dashboard loaded, no login in the way:

A Grafana dashboard showing request rate, render time percentiles, queue depth and packets received

That screenshot is the stack in this repository, fed by examples/send_metrics.py through this client. The local stack guide covers how statsd renames your metrics on the way through, and what to check when nothing shows up.

Configuration

Set the defaults once at startup and every client built afterwards follows:

import statsd

statsd.Connection.set_defaults(host='localhost', port=8125, sample_rate=1)

Or build connections yourself when one destination is not enough:

import statsd

connection = statsd.Connection(host='statsd-1', port=8125, sample_rate=0.1)
statsd.Counter('app.requests', connection).increment()

One trap worth knowing before it costs you an afternoon: a falsy argument means "use the default", so Connection(sample_rate=0) sends everything. Pass disabled=True to send nothing.

Documentation

Full documentation is at python-statsd.readthedocs.io.

  • Metrics: the five types, how to choose, and the exact bytes each one writes
  • Connections: destinations, sampling, disabling, failure behaviour, threads and forks
  • Patterns: naming, cardinality, client trees, WSGI and Celery integration
  • Local stack: docker compose, and how to debug a metric that never arrives

For Django, use django-statsd, the sister project built on this client. It times views and reports the queries per request without you writing any of it.

Note on the package name

This project is published on PyPI as python-statsd and installs a module called statsd. A different project, jsocol's client, is published as statsd and installs a module called statsd as well. Installing both in one environment leaves you with whichever was written last, so pick one.

Contributing

Bug reports and patches are welcome, and CONTRIBUTING.md covers the development setup: uv sync --all-extras, uv run pytest, and uv run tox -p auto to run everything CI runs. Every code sample in this README and in the documentation is executed by the test suite, so a change in behaviour tends to tell you which paragraph it just made wrong.

Links

Release files for python-statsd 3.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for python-statsd 3.0.0
File Size Uploaded
python_statsd-3.0.0.tar.gz 12.4 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for python-statsd 3.0.0
File Interpreter ABI Platform
python_statsd-3.0.0-py3-none-any.whl Python 3 none any Details

Total release size:28.1 kB

Release files / python_statsd-3.0.0.tar.gz

Download URL python_statsd-3.0.0.tar.gz
Size 12.4 kB
Tags Source
SHA-256 checksum
How to use checksums
f7f7957ddf6757a231e316ef2ca6bd47ce33a701c57b4049406308f811e9f76e
BLAKE2b-256 checksum
How to use checksums
01a5f881bb12332f80aa016998b6779aa5966bd8dc57f92c327a6f1fb8d3a1e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 12, 2026.

Transparency log

Release files / python_statsd-3.0.0-py3-none-any.whl

Download URL python_statsd-3.0.0-py3-none-any.whl
Size 15.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
2ab8f8722f6725ecc39895b6ffe9f2a6752b6aa00786b77cc66058d06e06d320
BLAKE2b-256 checksum
How to use checksums
d727b9dabdcaf24c8a6e366deae5c22a5d9015dca9900451fdb8d3f834249f5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 12, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

3.0.0 This release

2 release files

2.1.0

2 release files

2.0.0

2 release files

1.7.2

1 release file

1.7.1

1 release file

1.7.0

1 release file

1.6.4

1 release file

1.6.3

1 release file

1.6.2

1 release file

1.6.1

1 release file

1.6.0

1 release file

1.5.8

1 release file

1.5.7

1 release file

1.5.6

1 release file

1.5.5

1 release file

1.5.4

1 release file

1.5.3

1 release file

1.5.2

1 release file

1.5.1

1 release file

1.4.3

1 release file

1.4.2

2 release files

1.4.1

1 release file

1.4

3 release files

1.3

2 release files

1.2

2 release files

1.1

2 release files

1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page