Class: CloudWatch
- Defined in:
- lib/aws_recon/collectors/cloudwatch.rb
Overview
Collect CloudWatch resources
Constant Summary
Constants inherited from Mapper
Mapper::SINGLE_REGION_SERVICES
Instance Method Summary collapse
-
#collect ⇒ Object
Returns an array of resources.
Methods inherited from Mapper
Constructor Details
This class inherits a constructor from Mapper
Instance Method Details
#collect ⇒ Object
Returns an array of resources.
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/aws_recon/collectors/cloudwatch.rb', line 10 def collect resources = [] # # describe_alarms # @client.describe_alarms.each_with_index do |response, page| log(response.context.operation_name, page) response.composite_alarms.each do |alarm| struct = OpenStruct.new(alarm.to_h) struct.type = 'composite_alarm' struct.arn = alarm.alarm_arn resources.push(struct.to_h) end response.metric_alarms.each do |alarm| struct = OpenStruct.new(alarm.to_h) struct.type = 'metric_alarm' struct.arn = alarm.alarm_arn struct.state_reason_data = alarm.state_reason_data&.parse_policy resources.push(struct.to_h) end end resources end |