Reputation: 990
I am currently in the process of migrating some services to AWS and have hit a bit of a road block. I would like to be able to monitor the error percentage of a Lambda and create an Alarm if a certain threshold is breached. Currently the percentage error rate can be calculated with Metric Math, however alarms cannot be generated from this.
I was wondering if anyone know a way in that I could push the metrics require to calculate the percentage, Error and Invocation, to a Lambda and have the Lambda perform the calculation and create the SNS alarm?
Thanks!
Upvotes: 2
Views: 1061
Reputation: 1830
CloudWatch just released the Alarms on MetricMath expressions.
So basically you just need to:
More information in their documentation
Upvotes: 3