Skip to content
This repository was archived by the owner on Dec 11, 2023. It is now read-only.

Commit 75f80e1

Browse files
committed
Bump version and changelog for 2.1.0
1 parent 36a9660 commit 75f80e1

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
## Changelog
22

3+
### Version 2.1.0
4+
* Add support for tagged measurements (#121)
5+
36
### Version 2.0.2
47
* Filter sensitive headers in exception output (#130, Yannick Schutz)
58

6-
### Version 2.1.0.beta
7-
* Add support for tagged measurements (#121)
8-
99
### Version 2.0.1
1010
* Fix SmartJSON delegation bug for ruby 2.3.1 (#123)
1111

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,7 @@ Both options are driven by the addition of measurements. *If you are adding meas
184184

185185
If your goal is to collect metrics every _x_ seconds and submit them, [check out this code example](https://github.com/librato/librato-metrics/blob/master/examples/submit_every.rb).
186186

187-
## Submitting tagged measurements (beta)
188-
189-
**Tagged measurements are only available in the Tags Beta. Please [contact Librato support](mailto:support@librato.com) to join the beta.**
187+
## Submitting tagged measurements
190188

191189
Librato Metrics supports tagged measurements that are associated with a metric, one or more tag pairs, and a point in time.
192190

@@ -243,13 +241,11 @@ Get the 5 minute moving average for `temperature` for the last hour, assuming te
243241

244242
data = Librato::Metrics.get_composite 'moving_average(mean(series("temperature", "*"), {size: "5"}))', start_time: Time.now.to_i - 60*60, resolution: 300
245243

246-
There are many more options supported for querying, take a look at the
244+
There are many more options supported for querying, take a look at the
247245
[REST API docs](https://www.librato.com/docs/api/#retrieve-metrics) or the individual method documentation for more details.
248246

249247
## Retrieving tagged measurements (beta)
250248

251-
**Tagged measurements are only available in the Tags Beta. Please [contact Librato support](mailto:support@librato.com) to join the beta.**
252-
253249
Get the series for `exceptions` in **production** grouped by **sum** within the **last hour**:
254250

255251
```ruby

lib/librato/metrics/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Librato
22
module Metrics
3-
VERSION = "2.1.0.beta"
3+
VERSION = "2.1.0"
44
end
55
end

0 commit comments

Comments
 (0)