Module: CloudwatchCommon
- Includes:
- Common
- Defined in:
- lib/sensu-plugins-aws/cloudwatch-common.rb
Class Method Summary collapse
Instance Method Summary collapse
- #check(config) ⇒ Object
- #client ⇒ Object
- #compare(value, threshold, compare_method) ⇒ Object
- #composite_metrics_request(metric) ⇒ Object
- #dimension_string ⇒ Object
- #get_metric(metric) ⇒ Object
- #metrics_request(config) ⇒ Object
- #read_value(resp, stats) ⇒ Object
- #resp_has_no_data(resp, stats) ⇒ Object
Methods included from Common
Class Method Details
.parse_dimensions(dimension_string) ⇒ Object
52 53 54 55 56 |
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 52 def self.parse_dimensions(dimension_string) dimension_string.split(',') .collect { |d| d.split '=' } .collect { |a| { name: a[0], value: a[1] } } end |
Instance Method Details
#check(config) ⇒ Object
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 62 def check(config) resp = client.get_metric_statistics(metrics_request(config)) no_data = resp_has_no_data(resp, config[:statistics]) if no_data && config[:no_data_ok] ok "#{metric_desc} returned no data but that's ok" elsif no_data && !config[:no_data_ok] unknown "#{metric_desc} could not be retrieved" end value = read_value(resp, config[:statistics]) base_msg = "#{metric_desc} is #{value}: comparison=#{config[:compare]}" if compare value, config[:critical], config[:compare] critical "#{base_msg} threshold=#{config[:critical]}" elsif config[:warning] && compare(value, config[:warning], config[:compare]) warning "#{base_msg} threshold=#{config[:warning]}" else ok "#{base_msg}, will alarm at #{!config[:warning].nil? ? config[:warning] : config[:critical]}" end end |
#client ⇒ Object
5 6 7 |
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 5 def client @client ||= Aws::CloudWatch::Client.new end |
#compare(value, threshold, compare_method) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 17 def compare(value, threshold, compare_method) case compare_method when 'greater' value > threshold when 'less' value < threshold when 'not' value != threshold else value == threshold end end |
#composite_metrics_request(metric) ⇒ Object
47 48 49 50 |
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 47 def composite_metrics_request(metric) ## config is a class variable but don't want to change signature metrics_request(config).merge(metric_name: metric) end |
#dimension_string ⇒ Object
58 59 60 |
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 58 def dimension_string config[:dimensions].map { |d| "#{d[:name]}=#{d[:value]}" }.join('&') end |
#get_metric(metric) ⇒ Object
43 44 45 |
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 43 def get_metric(metric) client.get_metric_statistics(composite_metrics_request(metric)) end |
#metrics_request(config) ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 30 def metrics_request(config) { namespace: config[:namespace], metric_name: config[:metric_name], dimensions: config[:dimensions], start_time: Time.now - config[:period] * 10, end_time: Time.now, period: config[:period], statistics: [config[:statistics]], unit: config[:unit] } end |
#read_value(resp, stats) ⇒ Object
9 10 11 |
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 9 def read_value(resp, stats) resp.datapoints.sort_by(&:timestamp).last.send(stats.downcase) end |
#resp_has_no_data(resp, stats) ⇒ Object
13 14 15 |
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 13 def resp_has_no_data(resp, stats) resp.datapoints.nil? || resp.datapoints.empty? || resp.datapoints.first.nil? || read_value(resp, stats).nil? end |