1. Images & Charts
  2. statsd

Echo is acquiring Minimus. See the announcementfor more details.

statsd

statsd

Infra
Updated 4 days ago

StatsD Overview

Secure your stack with a hardened StatsD image freshly-built by Minimus. Minimus images always include the most up-to-date package version for all packages and dependencies contained in the image.


StatsD lets applications emit metrics — counters, timers, and gauges — as simple UDP or TCP packets, without needing a client library that manages connections, retries, or buffering. It aggregates the incoming data points and flushes them on a fixed interval to one or more backend services, such as Graphite, for storage and visualization. This gives teams a lightweight way to instrument existing services with basic metrics without changing how those services are built or deployed.


Try It Out

Take the Minimus StatsD image for a test run:

docker run --rm -d --name statsd \
  -p 8125:8125/udp \
  -p 8126:8126 \
reg.mini.dev/statsd

This maps UDP port 8125, where StatsD listens for incoming metrics, and TCP port 8126, which exposes a management console for querying aggregated stats.

Send a counter metric to the daemon:

echo "foo:1|c" | nc -u -w1 localhost 8125

Query the management console to see the counter StatsD received:

echo "counters" | nc localhost 8126

You should get a response like:

{ foo: 1 }
END

Technical Considerations

The StatsD image provided by Minimus is a slim, security-hardened alternative to the public image from Docker Hub. The images are largely interchangeable, with a few differences as noted below.

StatsD built by Minimus:

  1. Runs as root to support required functions in alignment with the public image.
  2. Drill down on the version specification tab to see the listening ports, entrypoint, volumes, environment variables, etc.

The Payoff

A hardened, minimal image that will remain more secure for the long run and accrue vulnerabilities at a slower rate.


Terms & Info

Trademark

This catalog is published by Minimus. All product names, logos, and marks, other than those belonging to Minimus, shown are owned by their respective rights holders and appear here only to identify the open source software each image contains. Minimus claims no ownership of those marks and implies no affiliation with, endorsement by, certification by, or sponsorship by any rights holder.

Disclaimer

Images are provided "as-is" without warranty of any kind. "Hardened" refers to the security configuration applied at the time of build and does not constitute a guarantee of ongoing security or absence of vulnerabilities. The free tier is provided without support, SLA, or guaranteed patching timelines. Security updates may be applied to paid subscriptions before or instead of free tier images. By pulling or using any image you agree to our Terms of Use.