forked from twitter-archive/ostrich
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
308 lines (192 loc) · 5.96 KB
/
CHANGELOG
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
8.2.9
-----
release: 16 October 2012
- update util version
- sbt: robust MD5 checking.
8.2.0
-----
release: 25 June 2012
- update util versions
8.0.0
-----
release: 14 June 2012
- update util versions
7.0.0
-----
release: 8 May 2012
- update util versions
6.0.1
-----
release: 1 May 2012
- use immutable map for AdminServiceConfig's extraHandlers
- deprecate util.Config based AdminServiceConfig in favor of
case-class-based factory
6.0.0
-----
release: 14 March 2012
- Try and flush JSON stats when shutting down
4.10.6
------
release: 21 February 2012
- Build for both scala 2.8.1 and scala 2.9.1.
- Add support for named JSONP callbacks. [gphat]
- Add support for exporting to graphite. [ewhauser]
- Work extra hard to log errors to stderr during startup.
4.10.3
------
release: 24 January 2012
- Allow counters to be generated out of AtomicLong objects.
- Add the ability to remove a metric.
- Handle exceptions thrown by gauges.
- Use a configurable separator when flattening metric names.
4.10.2
------
release: 20 October 2011
- Compiled against util 1.12.9
4.10.0
------
release: 20 October 2011
- Compiled against util 1.12.0
4.9.4
-----
release: 17 October 2011
- Compile configs loaded by RuntimeEnvironment to a directory
- Enable or disable Finagle tracing from the admin http interface.
- Fix PeriodicBackgroundProcess to delay up to a second, preventing it
from running at the 59th second of a minute by accident.
- Add more histogram buckets, to track metrics > 1M.
4.9.3
-----
release: 22 September 2011
- Add 'removeCounter'. [gphat]
4.9.2
-----
release: 13 September 2011
- Fix logic to find the jar when it's in the current folder.
4.9.1
-----
release: 7 September 2011
- Fix a few small bugs in the "/graph/" system of the admin server.
4.9.0
-----
release: 29 August 2011
- Add 'statsFilters' and "?filtered=1" to the stats command on the admin
port.
4.8.3
-----
release: 12 August 2011
- Allow a BackgroundProcess to ask not to be interrupted.
- Allow a BackgroundProcess to be stopped without joining its underlying
thread.
4.8.2
-----
Changes:
- supports configuration which StatsCollection to report for a given AdminHttpService
4.8.0
-----
release: 8 August 2011
- Histogram improvements (used for percentiles)
Use 3x more buckets
getPercentile/minimum/maximum now returns midpoint of bucket, not
upper boundary
With the above two changes, getPercentile/minimum/maximum return
an estimated value within 5% of the actual value. Before, the
estimated values was up to 23% higher than the actual value.
Fix: getPercentile(0.0) now returns the minimum (was 0)
Fix: minimum of a histogram containing only infinity is infinity
4.7.3
-----
release: 20 July 2011
- Include file descriptor statistics
4.7.2
-----
release: 14 July 2011
- [OBSERVE-289] Support both namespaced and period-latched stats listeners on
the admin service.
4.7.1
-----
release: 12 July 2011
- [OBSERVE-286] Fix LatchedStatsListener to update values once per period.
4.7.0
-----
release: 11 July 2011
- Fix LatchedStatsListener caching so that a new listener is not created for
each request (effectively causing unlatched absolute-counter behavior)
- Move default latch intervals into AdminServiceConfig
- Latch gauges and labels
- Add interval support to json_stats_fetcher.rb (for tests, mostly)
- Remove unnecessary synchronizations
- Upgrade to util-1.10
4.6.0
-----
release: 7 July 2011
- Fix a potential race in histogram reporting.
- Use latched StatsListeners by default, so multiple listeners on the same
time frequency get the same deltas.
4.5.2
-----
release: 6 July 2011
- Let the admin HTTP port be defined/overridden by the command line.
- Fix timeFuture* API to return positive values.
4.5.0
-----
release: 28 June 2011
- Requires util 1.9.0, which introduces the validate() method on Config.
- validate() on Configs is called automatically in RuntimeEnvironment when
loading a config.
- Fixed admin port "/" path, and added an "X-Ostrich-Version" header to all
responses.
4.4.0
-----
release: 14 June 2011
- StatsListener computes distributions as deltas just like it does for
counters.
- Distribution is now just a thin immutable wrapper around a Histogram, and
FanoutMetric now has the same behavior as FanoutCounter.
- Min/max are now computed on the histogram and vary across samples. Count
and sum have been pushed into Histogram.
- Added 95th percentile to reported stats.
4.3.0
-----
release: 1 June 2011
- track sum in Metric and Distribution and derive mean
4.2.3
-----
release: 19 May 2011
- fix StatsListener constructor to keep backwards compatibility
- better timers for Future
4.2.2
-----
release: 17 May 2011
- CgiRequestHandler: Handle multiple CGI parameters correctly
4.2.1
-----
release: 13 May 2011
- remove idea plugin
- fix bug in reporting metrics that may not exist
4.2.0
-----
release: 9 May 2011
- Made -D option set system properties, too.
- Derived metrics (i.e. average, max, min, percentiles) are now exposed only when there are one or
more events in a metric's histogram.
- Added admin command "stats?namespace=<name>", which will report a named StatsListener.
- Removed old hooks for adding admin HTTP path handlers. You have to use the config fields in
AdminServiceConfig now.
- Added several GC-related counters & gauges to stats.
- Added support to the admin "server_info" command for two new build fields: current branch alias
and the last few commit summaries (requires standard-project >= 0.12.4).
- Improved documentation significantly.
4.1.0
-----
release: 7 Apr 2011
- BackgroundProcess is no longer a Thread. It now contains a field "thread" which is the actual
thread.
- Added FanoutStatsCollection and LocalStatsCollection.
- Added StatsProvider#timeFutureMillis for timing util-core Future operations.
- Added -D option to RuntimeEnvironment arguments for custom arguments.
...
1.2.0
-----
release: 3 Aug 2010
- Added manual setGauge and clearGauge to Stats.