1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/parsers/cloud_watch/get_metric_statistics.rb

42 lines
1.1 KiB
Ruby
Raw Normal View History

2011-05-16 05:48:09 -04:00
module Fog
module Parsers
module AWS
module CloudWatch
class GetMetricStatistics < Fog::Parsers::Base
2011-05-16 05:48:09 -04:00
def reset
@response = { 'GetMetricStatisticsResult' => {'Datapoints' => []}, 'ResponseMetadata' => {} }
reset_datapoint
end
def reset_datapoint
@datapoint = {}
end
2011-09-10 06:32:12 -04:00
2011-05-16 05:48:09 -04:00
def start_element(name, attrs = [])
super
end
2011-09-10 06:32:12 -04:00
2011-05-16 05:48:09 -04:00
def end_element(name)
2011-09-10 06:32:12 -04:00
case name
2011-05-16 05:48:09 -04:00
when 'Average', 'Maximum', 'Minimum', 'SampleCount', 'Sum'
@datapoint[name] = value.to_f
2011-05-16 05:48:09 -04:00
when 'Unit'
@datapoint[name] = value
2011-05-16 05:48:09 -04:00
when 'Timestamp'
@datapoint[name] = Time.parse value
when 'member'
2011-05-16 05:48:09 -04:00
@response['GetMetricStatisticsResult']['Datapoints'] << @datapoint
reset_datapoint
when 'Label'
@response['GetMetricStatisticsResult'][name] = value
2011-05-16 05:48:09 -04:00
when 'RequestId'
@response['ResponseMetadata'][name] = value
2011-05-16 05:48:09 -04:00
end
end
end
end
end
end
end
2011-10-03 18:34:59 -04:00