cloudwatch-metrics 0.1.16 → 0.1.17

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: 97790dd4bec2f067aeca87ba8aabaa580fbb98f793125258d4bdb53fea42da5d
4
- data.tar.gz: 6ea60c0395cd756541de4c87bf81b74fd06f26f467be9bdd21d3cb2fb52381cd
3
+ metadata.gz: dfe7fbdd2e3121c9144df74e1e620277b0d9c1d019eefcbc62592e979d575cf2
4
+ data.tar.gz: e4c052ef871bd758454ebbd52d931eb2af554c0cf3e13ca2aad612cf533c39e4
5
5
  SHA512:
6
- metadata.gz: 8767e36b91438b6178ebe96cac9a1a712629279afa37b20dd4624ae46319d6279544b3d63dc537fdf44272d286c790f9eb6f40b31e013391ace747e96b7c86bf
7
- data.tar.gz: 16fb72d30d8f932f17e47281eee1c23d234a93fb222426c3b7423b9fb4fb30bff8746f366c619b7ac1d1a4f07e551684dfc05c1eea4d30864e04cdad0fdf3d71
6
+ metadata.gz: 4ac092df3e27dc27438a72d8e1962fd35a5ea623074c0853f29874c31f90518090555389a9e4d63e8ea88491b40643e2f80d8e531ce9d66b8438ce0826cf90d2
7
+ data.tar.gz: 8fe6aa51871bef6c68df7d00c22a421834a057c722c819fb7efd58a588f3a8bc03710fb22a445906a01b16d5e7aa61edb84f647100b73aeb8415eab9c11fc220
data/README.md CHANGED
@@ -31,21 +31,21 @@ Metrics are reported using `CW.report` for single data points, or `CW.report_all
31
31
 
32
32
  ### CW.report Required Parameters
33
33
 
34
- * `metric_name`: The name of the metric.
34
+ * `name`: The name of the metric.
35
35
  * `value`: The value for the single data point being reported.
36
36
 
37
- E.g. `CW.report(metric_name: 'search_result_count', value: 25)`
37
+ E.g. `CW.report(name: 'search_result_count', value: 25)`
38
38
 
39
39
 
40
40
  `CW.report_all` has a similar method signature, but takes an array of values, and a corresponding array indicating how many times each value occurred during the period.
41
41
 
42
42
  ### CW.report_all Required Parameters
43
43
 
44
- * `metric_name`: The name of the metric.
44
+ * `name`: The name of the metric.
45
45
  * `values`: Array of values for the data points being reported.
46
46
  * `counts`: Array of numbers indicating the number of times each value occurred during the period. The length of this array should match the length of the `values` array.
47
47
 
48
- E.g. `CW.report_all(metric_name: 'search_result_count', values: [25, 50, 65], counts: [1, 2, 1])`
48
+ E.g. `CW.report_all(name: 'search_result_count', values: [25, 50, 65], counts: [1, 2, 1])`
49
49
 
50
50
  ### Optional Parameters
51
51
 
@@ -56,7 +56,7 @@ Both reporting 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.report(metric_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.report(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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CloudwatchMetrics
4
- VERSION = '0.1.16'
4
+ VERSION = '0.1.17'
5
5
  end
@@ -16,10 +16,10 @@ module CloudwatchMetrics
16
16
  end
17
17
 
18
18
  def record(
19
- metric_name:, value:, unit: nil, namespace: configuration.namespace, dimensions: [], timestamp: nil
19
+ name:, value:, unit: nil, namespace: configuration.namespace, dimensions: [], timestamp: nil
20
20
  )
21
21
  metric_data = [{
22
- metric_name: metric_name,
22
+ metric_name: name,
23
23
  value: value,
24
24
  unit: unit,
25
25
  dimensions: map_dimensions(dimensions),
@@ -29,10 +29,10 @@ module CloudwatchMetrics
29
29
  end
30
30
 
31
31
  def record_all(
32
- metric_name:, values:, counts:, unit: nil, namespace: configuration.namespace, dimensions: [], timestamp: nil
32
+ name:, values:, counts:, unit: nil, namespace: configuration.namespace, dimensions: [], timestamp: nil
33
33
  )
34
34
  metric_data = [{
35
- metric_name: metric_name,
35
+ metric_name: name,
36
36
  values: values,
37
37
  counts: counts,
38
38
  unit: unit,
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.16
4
+ version: 0.1.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Puckett