Module: CloudwatchCommon

Includes:
Common
Defined in:
lib/sensu-plugins-aws/cloudwatch-common.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Common

#aws_config, #initialize

Class Method Details

.parse_dimensions(dimension_string) ⇒ Object



51
52
53
54
55
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 51

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



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 61

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

#clientObject



4
5
6
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 4

def client
  @client ||= Aws::CloudWatch::Client.new
end

#compare(value, threshold, compare_method) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 16

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



46
47
48
49
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 46

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_stringObject



57
58
59
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 57

def dimension_string
  config[:dimensions].map { |d| "#{d[:name]}=#{d[:value]}" }.join('&')
end

#get_metric(metric) ⇒ Object



42
43
44
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 42

def get_metric(metric)
  client.get_metric_statistics(composite_metrics_request(metric))
end

#metrics_request(config) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 29

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



8
9
10
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 8

def read_value(resp, stats)
  resp.datapoints.sort_by(&:timestamp).last.send(stats.downcase)
end

#resp_has_no_data(resp, stats) ⇒ Object



12
13
14
# File 'lib/sensu-plugins-aws/cloudwatch-common.rb', line 12

def resp_has_no_data(resp, stats)
  resp.datapoints.nil? || resp.datapoints.empty? || resp.datapoints.first.nil? || read_value(resp, stats).nil?
end