skillfed

statsd-tags

A simple statsd client with DogTag-compatible tag support.

statsd-tags v3.2.1.post1 151.2K downloads/30d#10,939 on PyPI
Permissive license MIT Abandoned released

What it is and what it does

statsd-tags is a Python client library that sends metrics to a statsd daemon for aggregation and forwarding to Graphite. It provides a simple API to increment counters, record timings, and set gauges, with optional metric prefixes. The package extends the standard statsd protocol with support for DogTag-compatible tags, allowing you to attach key-value labels to metrics for better organization and filtering in monitoring systems.

The library has no external runtime dependencies, making it lightweight to install. However, it requires an active statsd daemon running on your network to receive the metrics. The package is classified as production-stable but has not been maintained since its initial release, meaning it does not track changes to the statsd protocol or modern Python ecosystem practices.

Use it for:

  • Send application performance metrics (request counts, response times) to Graphite for real-time monitoring.
  • Tag metrics with environment and service identifiers to organize and filter metrics across multiple deployments.
  • Record custom business metrics (user signups, transactions) alongside infrastructure metrics in a unified system.
  • Integrate statsd metric collection into legacy Python 2 or early Python 3 applications without updating dependencies.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

A Python client for sending metrics to statsd/Graphite, with support for DogTag-compatible tags to label and organize metrics.

No. The package is abandoned and has not been updated since 2016-12-24. While it has no known vulnerabilities and low install friction, the lack of maintenance means it will not adapt to protocol changes, security updates, or modern Python versions. For new projects, use an actively maintained statsd client or a modern observability library. For legacy systems already using it, consider migration planning.

Install

statsd-tags on PyPI

pip

pip install statsd-tags

uv

uv add statsd-tags

poetry

poetry add statsd-tags

Installing statsd-tags

Before you install

Low install friction with no runtime dependencies. However, the package has been abandoned since its last release, with no recent maintenance activity.

License in practice

MIT license permits free use, modification, and distribution with minimal restrictions—suitable for most projects.

Quickstart

pip install statsd-tags

import statsd
c = statsd.StatsClient('localhost', 8125)
c.incr('foo')
c.gauge('baz', 42, tags=['production', 'fqdn:example.org'])

Requires a statsd daemon listening on the specified host and port (default localhost:8125).

Verify before relying

  • Whether the package works reliably with modern Python versions despite classifiers listing only up to 3.5.
  • Current compatibility with recent versions of Graphite and statsd protocol changes.
  • Whether DogTag tag format remains compatible with current monitoring systems.

Package facts

License MIT (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance abandoned — 3,520 days since the last release
First released
Downloads 151,241/month — #10,939 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: statsd_tags-3.2.1.post1-py2.py3-none-any.whl

Development Status :: 5 - Production/StableEnvironment :: Web EnvironmentIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 2Programming Language :: Python :: 2.5Programming Language :: Python :: 2.6Programming Language :: Python :: 2.7Programming Language :: Python :: 3Programming Language :: Python :: 3.2Programming Language :: Python :: 3.3Programming Language :: Python :: 3.4Programming Language :: Python :: 3.5Topic :: Software Development :: Libraries :: Python Modules

Tags

statsd client pythongraphite metrics senderdogtag compatible tagsstatsd tagging supportmetrics collection clientstatsd daemon client
metricsmonitoringabandoned

More Python Modules packages