Class: Aws::CloudWatch::Metric
- Inherits:
-
Object
- Object
- Aws::CloudWatch::Metric
- Defined in:
- gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb
Defined Under Namespace
Classes: Collection
Read-Only Attributes collapse
-
#dimensions ⇒ Array<Types::Dimension>
The dimensions for the metric.
-
#name ⇒ String
(also: #metric_name)
-
#namespace ⇒ String
Actions collapse
-
#get_statistics(options = {}) ⇒ Types::GetMetricStatisticsOutput
-
#put_alarm(options = {}) ⇒ Alarm
-
#put_data(options = {}) ⇒ EmptyStructure
Associations collapse
Instance Method Summary collapse
-
#client ⇒ Client
-
#data ⇒ Types::Metric
Returns the data for this Metric.
-
#data_loaded? ⇒ Boolean
Returns
trueif this resource is loaded. -
#initialize(*args) ⇒ Metric
constructor
A new instance of Metric.
- #load ⇒ self (also: #reload)
-
#wait_until(options = {}) {|resource| ... } ⇒ Resource
deprecated
Deprecated.
Use [Aws::CloudWatch::Client] #wait_until instead
Constructor Details
#initialize(namespace, name, options = {}) ⇒ Metric #initialize(options = {}) ⇒ Metric
Returns a new instance of Metric.
24 25 26 27 28 29 30 31 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 24 def initialize(*args) = Hash === args.last ? args.pop.dup : {} @namespace = extract_namespace(args, ) @name = extract_name(args, ) @data = .delete(:data) @client = .delete(:client) || Client.new() @waiter_block_warned = false end |
Instance Method Details
#alarms(options = {}) ⇒ Alarm::Collection
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 1000 def alarms( = {}) batches = Enumerator.new do |y| batch = [] = .merge( namespace: @namespace, metric_name: @name ) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.describe_alarms_for_metric() end resp.data.metric_alarms.each do |m| batch << Alarm.new( name: m.alarm_name, data: m, client: @client ) end y.yield(batch) end Alarm::Collection.new(batches) end |
#client ⇒ Client
55 56 57 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 55 def client @client end |
#data ⇒ Types::Metric
Returns the data for this Aws::CloudWatch::Metric. Calls
Client#list_metrics if #data_loaded? is false.
80 81 82 83 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 80 def data load unless @data @data end |
#data_loaded? ⇒ Boolean
88 89 90 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 88 def data_loaded? !!@data end |
#dimensions ⇒ Array<Types::Dimension>
The dimensions for the metric.
48 49 50 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 48 def dimensions data[:dimensions] end |
#get_statistics(options = {}) ⇒ Types::GetMetricStatisticsOutput
302 303 304 305 306 307 308 309 310 311 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 302 def get_statistics( = {}) = .merge( namespace: @namespace, metric_name: @name ) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.get_metric_statistics() end resp.data end |
#load ⇒ self Also known as: reload
Loads, or reloads #data for the current Aws::CloudWatch::Metric.
Returns self making it possible to chain methods.
metric.reload.data
65 66 67 68 69 70 71 72 73 74 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 65 def load resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.list_metrics( metric_name: @name, namespace: @namespace ) end @data = resp.metrics[0] self end |
#name ⇒ String Also known as: metric_name
41 42 43 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 41 def name @name end |
#namespace ⇒ String
36 37 38 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 36 def namespace @namespace end |
#put_alarm(options = {}) ⇒ Alarm
822 823 824 825 826 827 828 829 830 831 832 833 834 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 822 def put_alarm( = {}) = .merge( namespace: @namespace, metric_name: @name ) Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.put_metric_alarm() end Alarm.new( name: [:alarm_name], client: @client ) end |
#put_data(options = {}) ⇒ EmptyStructure
957 958 959 960 961 962 963 964 965 966 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 957 def put_data( = {}) = Aws::Util.deep_merge(, namespace: @namespace, metric_data: [{ metric_name: @name }] ) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.put_metric_data() end resp.data end |
#wait_until(options = {}) {|resource| ... } ⇒ Resource
Use [Aws::CloudWatch::Client] #wait_until instead
The waiting operation is performed on a copy. The original resource remains unchanged.
Waiter polls an API operation until a resource enters a desired state.
Basic Usage
Waiter will polls until it is successful, it fails by entering a terminal state, or until a maximum number of attempts are made.
# polls in a loop until condition is true
resource.wait_until() {|resource| condition}
Example
instance.wait_until(max_attempts:10, delay:5) do |instance|
instance.state.name == 'running'
end
Configuration
You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. The waiting condition is set by passing a block to #wait_until:
# poll for ~25 seconds
resource.wait_until(max_attempts:5,delay:5) {|resource|...}
Callbacks
You can be notified before each polling attempt and before each
delay. If you throw :success or :failure from these callbacks,
it will terminate the waiter.
started_at = Time.now
# poll for 1 hour, instead of a number of attempts
proc = Proc.new do |attempts, response|
throw :failure if Time.now - started_at > 3600
end
# disable max attempts
instance.wait_until(before_wait:proc, max_attempts:nil) {...}
Handling Errors
When a waiter is successful, it returns the Resource. When a waiter fails, it raises an error.
begin
resource.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
# resource did not enter the desired state in time
end
attempts attempt in seconds invoked before each attempt invoked before each wait
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/metric.rb', line 172 def wait_until( = {}, &block) self_copy = self.dup attempts = 0 [:max_attempts] = 10 unless .key?(:max_attempts) [:delay] ||= 10 [:poller] = Proc.new do attempts += 1 if block.call(self_copy) [:success, self_copy] else self_copy.reload unless attempts == [:max_attempts] :retry end end Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do Aws::Waiters::Waiter.new().wait({}) end end |