Menu
  • HOME
  • TAGS

Cloudwatch data logs to create a custom dashboard

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...

Cloud watch custom metrics creation with C# (.net) possible or not?

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 - how to read the AWS Status Check Alarm message.. It is encrypte

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...

AWS Cloudwatch PHP SDK returning unsorted metrics statistics

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 ...