amazon-web-services,amazon-ec2,amazon-elb,amazon-cloudwatch,cloudwatch
AWS CloudWatch API can do this for you, the two actions you may need: GetMetricStatistics: get time-series data for one or more statistics of a given MetricName. CLI reference: http://docs.aws.amazon.com/AmazonCloudWatch/latest/cli/cli-mon-get-stats.html API docs: http://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_GetMetricStatistics.html ListMetrics: lists the names, namespaces, and dimensions of the metrics associated with your AWS account. You can...
amazon-web-services,amazon-ec2,amazon-cloudwatch,cloudwatch
Here is a documentation of .NET API http://docs.aws.amazon.com/sdkfornet/latest/apidocs/Index.html
python,boto,amazon-sqs,amazon-cloudwatch,cloudwatch
The result of get_body() returns a JSON-formatted string. I recreated your situation by creating an SQS queue and an SNS notification topic, subscribed the SQS queue to the SNS topic, then created an alarm that pushes notifications to the SNS topic. I then triggered an alarm situation and retrieved the...
php,amazon-web-services,amazon-cloudwatch,cloudwatch
There is no way to get sorted results from GetMetricStatistics, you have to sort the datapoints yourself. "GetMetricStatistics does not return the data in chronological order." Source: http://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_GetMetricStatistics.html ...