This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version and changelog for 2.1.0
- Loading branch information
1 parent
36a9660
commit 75f80e1
Showing
3 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |