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

Commit

Permalink
Bump version and changelog for 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chancefeick committed Jan 25, 2017
1 parent 36a9660 commit 75f80e1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## Changelog

### Version 2.1.0
* Add support for tagged measurements (#121)

### Version 2.0.2
* Filter sensitive headers in exception output (#130, Yannick Schutz)

### Version 2.1.0.beta
* Add support for tagged measurements (#121)

### Version 2.0.1
* Fix SmartJSON delegation bug for ruby 2.3.1 (#123)

Expand Down
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,7 @@ Both options are driven by the addition of measurements. *If you are adding meas

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).

## Submitting tagged measurements (beta)

**Tagged measurements are only available in the Tags Beta. Please [contact Librato support](mailto:[email protected]) to join the beta.**
## Submitting tagged measurements

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

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

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

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

## Retrieving tagged measurements (beta)

**Tagged measurements are only available in the Tags Beta. Please [contact Librato support](mailto:[email protected]) to join the beta.**

Get the series for `exceptions` in **production** grouped by **sum** within the **last hour**:

```ruby
Expand Down
2 changes: 1 addition & 1 deletion lib/librato/metrics/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Librato
module Metrics
VERSION = "2.1.0.beta"
VERSION = "2.1.0"
end
end

0 comments on commit 75f80e1

Please sign in to comment.