2012-05-15 14:54:20 -04:00
|
|
|
require 'fog/aws'
|
2011-10-03 17:33:34 -04:00
|
|
|
|
2011-05-11 17:02:23 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class CloudWatch < Fog::Service
|
2012-06-18 04:44:51 -04:00
|
|
|
extend Fog::AWS::CredentialFetcher::ServiceMethods
|
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
|
2012-10-16 09:27:52 -04:00
|
|
|
recognizes :region, :host, :path, :port, :scheme, :persistent, :use_iam_profile, :aws_session_token, :aws_credentials_expire_at, :instrumentor, :instrumentor_name
|
2011-05-11 17:02:23 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-06-17 12:47:07 -04:00
|
|
|
def self.data
|
|
|
|
@data ||= Hash.new do |hash, region|
|
|
|
|
hash[region] = Hash.new do |region_hash, key|
|
|
|
|
region_hash[key] = {
|
|
|
|
:metric_alarms => {}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.reset
|
|
|
|
@data = nil
|
|
|
|
end
|
|
|
|
|
2011-05-11 17:02:23 -04:00
|
|
|
def initialize(options={})
|
2012-06-17 12:47:07 -04:00
|
|
|
@aws_access_key_id = options[:aws_access_key_id]
|
|
|
|
|
|
|
|
@region = options[:region] || 'us-east-1'
|
|
|
|
|
2012-11-13 21:32:07 -05:00
|
|
|
unless ['ap-northeast-1', 'ap-southeast-1', 'ap-southeast-2', 'eu-west-1', 'sa-east-1', 'us-east-1', 'us-west-1', 'us-west-2'].include?(@region)
|
2012-06-17 12:47:07 -04:00
|
|
|
raise ArgumentError, "Unknown region: #{@region.inspect}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def data
|
|
|
|
self.class.data[@region][@aws_access_key_id]
|
2011-05-11 17:02:23 -04:00
|
|
|
end
|
|
|
|
|
2012-06-17 12:47:07 -04:00
|
|
|
def reset_data
|
|
|
|
self.class.data[@region].delete(@aws_access_key_id)
|
|
|
|
end
|
2011-05-11 17:02:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class Real
|
2012-06-18 04:44:51 -04:00
|
|
|
include Fog::AWS::CredentialFetcher::ConnectionMethods
|
2011-05-11 17:02:23 -04:00
|
|
|
# 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 {}.
|
2012-02-02 15:48:03 -05:00
|
|
|
# * region<~String> - optional region to use. For instance, 'eu-west-1', 'us-east-1', etc.
|
2011-05-11 17:02:23 -04:00
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * CloudWatch object with connection to AWS.
|
|
|
|
def initialize(options={})
|
2012-06-18 04:44:51 -04:00
|
|
|
@use_iam_profile = options[:use_iam_profile]
|
|
|
|
setup_credentials(options)
|
2011-10-03 17:36:51 -04:00
|
|
|
|
2011-10-03 17:36:05 -04:00
|
|
|
@connection_options = options[:connection_options] || {}
|
2012-10-16 09:27:52 -04:00
|
|
|
|
|
|
|
@instrumentor = options[:instrumentor]
|
|
|
|
@instrumentor_name = options[:instrumentor_name] || 'fog.aws.cloud_watch'
|
|
|
|
|
2011-05-11 17:02:23 -04:00
|
|
|
options[:region] ||= 'us-east-1'
|
2012-02-02 15:48:03 -05:00
|
|
|
@host = options[:host] || "monitoring.#{options[:region]}.amazonaws.com"
|
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
|
|
|
|
|
2012-06-18 04:44:51 -04:00
|
|
|
def setup_credentials(options)
|
|
|
|
@aws_access_key_id = options[:aws_access_key_id]
|
|
|
|
@aws_secret_access_key = options[:aws_secret_access_key]
|
|
|
|
@aws_session_token = options[:aws_session_token]
|
|
|
|
@aws_credentials_expire_at = options[:aws_credentials_expire_at]
|
|
|
|
|
|
|
|
@hmac = Fog::HMAC.new('sha256', @aws_secret_access_key)
|
|
|
|
end
|
|
|
|
|
2011-05-11 17:02:23 -04:00
|
|
|
def request(params)
|
2012-06-18 04:44:51 -04:00
|
|
|
refresh_credentials_if_expired
|
2011-05-11 17:02:23 -04:00
|
|
|
idempotent = params.delete(:idempotent)
|
|
|
|
parser = params.delete(:parser)
|
|
|
|
|
|
|
|
body = AWS.signed_params(
|
|
|
|
params,
|
|
|
|
{
|
|
|
|
:aws_access_key_id => @aws_access_key_id,
|
[AWS] make beanstalk, cdn, cloudformation, cloudwatch, elasticache, elb, storage, rds, ses, sns, route53 temporary credential friendly
2012-06-20 18:16:34 -04:00
|
|
|
:aws_session_token => @aws_session_token,
|
2011-05-11 17:02:23 -04:00
|
|
|
:hmac => @hmac,
|
|
|
|
:host => @host,
|
|
|
|
:path => @path,
|
|
|
|
:port => @port,
|
|
|
|
:version => '2010-08-01'
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2012-10-16 09:27:52 -04:00
|
|
|
if @instrumentor
|
|
|
|
@instrumentor.instrument("#{@instrumentor_name}.request", params) do
|
|
|
|
_request(body, idempotent, parser)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
_request(body, idempotent, parser)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def _request(body, idempotent, parser)
|
2012-05-14 15:24:49 -04:00
|
|
|
@connection.request({
|
2011-05-11 17:02:23 -04:00
|
|
|
: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
|