Class: Aws::CloudWatch::Metric
- Inherits:
-
Object
- Object
- Aws::CloudWatch::Metric
- Extended by:
- Deprecations
- Defined in:
- 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
- #alarms(options = {}) ⇒ Alarm::Collection
- #identifiers ⇒ Object deprecated private Deprecated.
Instance Method Summary collapse
- #client ⇒ Client
-
#data ⇒ Types::Metric
Returns the data for this Metric.
-
#data_loaded? ⇒ Boolean
Returns ‘true` if 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 '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
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 |
# File 'lib/aws-sdk-cloudwatch/metric.rb', line 936 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 |
#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 'lib/aws-sdk-cloudwatch/metric.rb', line 80 def data load unless @data @data end |
#data_loaded? ⇒ Boolean
88 89 90 |
# File '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 '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 '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 |
#identifiers ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
960 961 962 963 964 965 |
# File 'lib/aws-sdk-cloudwatch/metric.rb', line 960 def identifiers { namespace: @namespace, name: @name } 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 '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 'lib/aws-sdk-cloudwatch/metric.rb', line 41 def name @name end |
#namespace ⇒ String
36 37 38 |
# File 'lib/aws-sdk-cloudwatch/metric.rb', line 36 def namespace @namespace end |
#put_alarm(options = {}) ⇒ Alarm
758 759 760 761 762 763 764 765 766 767 768 769 770 |
# File 'lib/aws-sdk-cloudwatch/metric.rb', line 758 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
893 894 895 896 897 898 899 900 901 902 |
# File 'lib/aws-sdk-cloudwatch/metric.rb', line 893 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 '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 |