forked from zodb/perfmetrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
68 lines (42 loc) · 1.35 KB
/
CHANGES.txt
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
67
68
CHANGES
=======
2.3 (2015-10-22)
- Add MANIFEST file
2.2 (2015-10-22)
----------------
- Update CHANGES
2.1 (2015-10-22)
----------------
- Detect if decorated method is class method or object method and behave
accordingly.
2.0 (2013-12-10)
----------------
- Added the @MetricMod decorator, which changes the name of metrics in
a given context. For example, "@MetricMod('xyz.%s')" adds a prefix.
- Removed the "gauge suffix" feature. It was unnecessarily confusing.
- Timing metrics produced by "@metric", "@metricmethod", and "@Metric"
now have a ".t" suffix by default to avoid naming conflicts.
1.0 (2012-10-09)
----------------
- Added 'perfmetrics.tween' and 'perfmetrics.wsgi' stats for measuring
request timing and counts.
0.9.5 (2012-09-22)
------------------
- Added an optional Pyramid tween and a similar WSGI filter app
that sets up the Statsd client for each request.
0.9.4 (2012-09-08)
------------------
- Optimized the use of reduced sample rates.
0.9.3 (2012-09-08)
------------------
- Support the STATSD_URI environment variable.
0.9.2 (2012-09-01)
------------------
- Metric can now be used as either a decorator or a context manager.
- Made the signature of StatsdClient more like James Socol's StatsClient.
0.9.1 (2012-09-01)
------------------
- Fixed package metadata.
0.9 (2012-08-31)
----------------
- Initial release.