forked from jsocol/pystatsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
66 lines (41 loc) · 1.13 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Statsd Changelog
================
Version 2.0.2
-------------
- Don't try to pop stats off an empty pipeline.
- Fix installs with Django 1.5 on the PYTHONPATH.
Version 2.0.1
-------------
- Fix install with Django 1.5 in the environment.
Version 2.0
-----------
- Add Pipeline subclass for batching.
- Added an _after method subclasses can use to change behavior.
- Add support for gauge deltas.
Version 1.0
-----------
- Clean up tests and requirements.
- Encode socket data in ASCII.
- Tag v1.
Version 0.5.1
-------------
- Stop supporting IPv6. StatsD doesn't support it, and it breaks things.
- incr, decr, and gauge now support floating point values.
Version 0.5.0
-------------
- Add support for gauges.
- Add real docs and hook up ReadTheDocs.
- Add support for environment var configuration.
Version 0.4.0
-------------
- Look up IP addresses once per client instance.
- Support IPv6.
Version 0.3.0
-------------
- Improve StatsClient.timer.
- Remove nasty threadlocal stuff.
- Return result of StatsClient.timer.
Version 0.2.0
-------------
- Optional prefix for all stats.
- Introduce StatsClient.timer context decorator.