cloudwatch-metrics 0.1.18 → 0.1.19

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb25220c1a1041c0a0cad1c509ee026b8e11e67cce20bd7915eac08399a744ae
4
- data.tar.gz: f811ba53260f3a52bf6b9b413c754fdf57b70cf6fd916b3d32d5ad2b8bd62d95
3
+ metadata.gz: 2cf213da73437c9d5d4e161a5c521187b7e10c6dec006e5b0d9dca7311a9ec72
4
+ data.tar.gz: eed0f8940588afa007452cebb3e991ad932c8b18ebae148465769440cf2c328e
5
5
  SHA512:
6
- metadata.gz: 466bd419bae4aaceb19fcaaff3ad9e51dab0a64958a15c0411c9c8b32ab8e3cf05c069f2e193d30bf70699ad1b956eabbf12159c67b27b843aef222964258091
7
- data.tar.gz: 373d1bd9b1bc401c3dfa30e5229b98aa067c8e67f0d19254db52ddef475f610503666d0e8b1c91c9ea26b65e997859416acc8ae6d5f811705341b7227bea157e
6
+ metadata.gz: 2985f423ac16673f9ca42ca7841d192bf109fdd6f59e60f793c369ecf39e2439b8af38254a95068eba4545720e523c9ef0d3d9317d4f05c0e64eceaa2f775bea
7
+ data.tar.gz: b53195c2982138aad940409ace56540bf244bf672c74aae80c823b9d0b945371d920927496039ee034789d26d5a8f7818c837645e6ec3e54d9eb42a93907a43e
data/README.md CHANGED
@@ -56,7 +56,7 @@ Both recording methods accept optional parameters, which are detailed below, alo
56
56
  * `dimensions`: A hash of name/value pairs that form part of the identity of a metric. Dimensions allow you to group and filter data points within a particular metric. Default is `nil`.
57
57
  * `timestamp`: The time associated with the data point. The timestamp can be up to two weeks in the past and up to two hours into the future. Default is the current time.
58
58
 
59
- E.g. `CW.record(name: 'search_result_count', value: 25, unit: CW.COUNT, namespace: 'custom_namespace', dimensions: { group: 'A', subgroup: 'B' }, timestamp: Time.current - 1.day)`
59
+ E.g. `CW.record(name: 'search_result_count', value: 25, unit: CW::COUNT, namespace: 'custom_namespace', dimensions: { group: 'A', subgroup: 'B' }, timestamp: Time.current - 1.day)`
60
60
 
61
61
  ### Local development
62
62
 
@@ -35,5 +35,4 @@ module CloudwatchMetrics
35
35
  GIGABYTES_PER_SECOND, TERABYTES_PER_SECOND, BITS_PER_SECOND, KILOBITS_PER_SECOND, MEGABITS_PER_SECOND,
36
36
  GIGABITS_PER_SECOND, TERABITS_PER_SECOND, COUNT_PER_SECOND, NONE
37
37
  ]
38
-
39
- end
38
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CloudwatchMetrics
4
- VERSION = '0.1.18'
4
+ VERSION = '0.1.19'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudwatch-metrics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.18
4
+ version: 0.1.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Puckett