- Updated PyPI trove classifiers for current Python versions.
- Updates support to Python 3.7 through 3.11.
- Added
close()
method to UDP-basedStatsClient
. (#136)
- Drops support for Python 2.
- Using a timing decorator on an async function should now properly measure the execution time, instead of counting immediately. See #119.
- Drop support for Python 2.5, 2.6, 3.2, 3.3 (#108, #116).
- Add UnixSocketStatsClient (#76, #112).
- Add support for timedeltas in timing() (#104, #111).
- Fix timer decorator with partial functions (#85).
- Remove ABCMeta metaclass (incompatible with Py3) (#109).
- Refactor client module (#115).
- Various doc updates (#99, #102, #110, #113, #114).
- Use a monotomic timer to avoid clock adjustments (#96).
- Test on Python 3.5 and 3.6.
- Various doc updates.
- Restore
StatsClient(host, port, prefix)
argument order.
- Add an explicit IPv6 flag.
- Add support for sub-millisecond timings
- Add IPv6 support.
- Add TCPStatsClient/TCPPipeline to support connection-mode clients.
- Make timers-as-decorators threadsafe.
- Moved default client instances out of init.py. Now find them in
the
statsd.defaults.{django,env}
modules.
- Fix negative absolute (non-delta) gauges.
- Improve test coverage.
- Fix issue with timers used as decorators.
- Add maxudpsize option for Pipelines.
- Add methods to use Timer objects directly.
- Handle large numbers in gauges correctly.
- Add
set
type. - Pipelines use parent client's _after method.
- Don't try to pop stats off an empty pipeline.
- Fix installs with Django 1.5 on the PYTHONPATH.
- Fix install with Django 1.5 in the environment.
- Add Pipeline subclass for batching.
- Added an _after method subclasses can use to change behavior.
- Add support for gauge deltas.
- Clean up tests and requirements.
- Encode socket data in ASCII.
- Tag v1.
- Stop supporting IPv6. StatsD doesn't support it, and it breaks things.
- incr, decr, and gauge now support floating point values.
- Add support for gauges.
- Add real docs and hook up ReadTheDocs.
- Add support for environment var configuration.
- Look up IP addresses once per client instance.
- Support IPv6.
- Improve StatsClient.timer.
- Remove nasty threadlocal stuff.
- Return result of StatsClient.timer.
- Optional prefix for all stats.
- Introduce StatsClient.timer context decorator.