2011-10-03 17:33:34 -04:00
|
|
|
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'aws'))
|
|
|
|
|
2011-05-11 17:02:23 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class CloudWatch < Fog::Service
|
|
|
|
|
2011-10-03 17:33:34 -04:00
|
|
|
|
2011-05-11 17:02:23 -04:00
|
|
|
requires :aws_access_key_id, :aws_secret_access_key
|
|
|
|
recognizes :region, :host, :path, :port, :scheme, :persistent
|
|
|
|
|
|
|
|
request_path 'fog/aws/requests/cloud_watch'
|
|
|
|
|
2011-05-16 05:48:09 -04:00
|
|
|
request :list_metrics
|
|
|
|
request :get_metric_statistics
|
|
|
|
request :put_metric_data
|
2011-09-29 17:52:56 -04:00
|
|
|
request :describe_alarms
|
|
|
|
request :put_metric_alarm
|
|
|
|
request :delete_alarms
|
2011-09-30 13:51:17 -04:00
|
|
|
request :describe_alarm_history
|
|
|
|
request :enable_alarm_actions
|
|
|
|
request :disable_alarm_actions
|
|
|
|
request :describe_alarms_for_metric
|
2011-09-30 15:08:59 -04:00
|
|
|
request :set_alarm_state
|
2011-09-10 06:32:12 -04:00
|
|
|
|
2011-05-18 09:44:41 -04:00
|
|
|
model_path 'fog/aws/models/cloud_watch'
|
|
|
|
model :metric
|
|
|
|
collection :metrics
|
2011-05-19 08:11:20 -04:00
|
|
|
model :metric_statistic
|
|
|
|
collection :metric_statistics
|
2011-10-03 19:12:45 -04:00
|
|
|
model :alarm_datum
|
2011-10-03 16:18:45 -04:00
|
|
|
collection :alarm_data
|
|
|
|
model :alarm_history
|
|
|
|
collection :alarm_histories
|
|
|
|
model :alarm
|
|
|
|
collection :alarms
|
2011-05-11 17:02:23 -04:00
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def initialize(options={})
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Real
|
|
|
|
|
|
|
|
# Initialize connection to Cloudwatch
|
|
|
|
#
|
|
|
|
# ==== Notes
|
|
|
|
# options parameter must include values for :aws_access_key_id and
|
|
|
|
# :aws_secret_access_key in order to create a connection
|
|
|
|
#
|
|
|
|
# ==== Examples
|
|
|
|
# elb = CloudWatch.new(
|
|
|
|
# :aws_access_key_id => your_aws_access_key_id,
|
|
|
|
# :aws_secret_access_key => your_aws_secret_access_key
|
|
|
|
# )
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * options<~Hash> - config arguments for connection. Defaults to {}.
|
|
|
|
# * region<~String> - optional region to use, in ['eu-west-1', 'us-east-1', 'us-west-1', 'ap-southeast-1', 'ap-northeast-1']
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * CloudWatch object with connection to AWS.
|
|
|
|
def initialize(options={})
|
|
|
|
@aws_access_key_id = options[:aws_access_key_id]
|
|
|
|
@aws_secret_access_key = options[:aws_secret_access_key]
|
|
|
|
@hmac = Fog::HMAC.new('sha256', @aws_secret_access_key)
|
2011-10-03 17:36:51 -04:00
|
|
|
|
2011-10-03 17:36:05 -04:00
|
|
|
@connection_options = options[:connection_options] || {}
|
2011-05-11 17:02:23 -04:00
|
|
|
options[:region] ||= 'us-east-1'
|
|
|
|
@host = options[:host] || case options[:region]
|
|
|
|
when 'ap-northeast-1'
|
|
|
|
'monitoring.ap-northeast-1.amazonaws.com'
|
|
|
|
when 'ap-southeast-1'
|
|
|
|
'monitoring.ap-southeast-1.amazonaws.com'
|
|
|
|
when 'eu-west-1'
|
|
|
|
'monitoring.eu-west-1.amazonaws.com'
|
|
|
|
when 'us-east-1'
|
|
|
|
'monitoring.us-east-1.amazonaws.com'
|
|
|
|
when 'us-west-1'
|
|
|
|
'monitoring.us-west-1.amazonaws.com'
|
|
|
|
else
|
|
|
|
raise ArgumentError, "Unknown region: #{options[:region].inspect}"
|
|
|
|
end
|
2011-10-03 17:36:51 -04:00
|
|
|
@path = options[:path] || '/'
|
2011-10-03 17:37:28 -04:00
|
|
|
@persistent = options[:persistent] || false
|
2011-10-03 17:36:51 -04:00
|
|
|
@port = options[:port] || 443
|
|
|
|
@scheme = options[:scheme] || 'https'
|
2011-10-03 17:36:05 -04:00
|
|
|
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", @persistent, @connection_options)
|
2011-05-11 17:02:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def reload
|
|
|
|
@connection.reset
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def request(params)
|
|
|
|
idempotent = params.delete(:idempotent)
|
|
|
|
parser = params.delete(:parser)
|
|
|
|
|
|
|
|
body = AWS.signed_params(
|
|
|
|
params,
|
|
|
|
{
|
|
|
|
:aws_access_key_id => @aws_access_key_id,
|
|
|
|
:hmac => @hmac,
|
|
|
|
:host => @host,
|
|
|
|
:path => @path,
|
|
|
|
:port => @port,
|
|
|
|
:version => '2010-08-01'
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
response = @connection.request({
|
|
|
|
:body => body,
|
|
|
|
:expects => 200,
|
|
|
|
:headers => { 'Content-Type' => 'application/x-www-form-urlencoded' },
|
|
|
|
:idempotent => idempotent,
|
|
|
|
:host => @host,
|
|
|
|
:method => 'POST',
|
|
|
|
:parser => parser
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|