Vico Chu
Vico Chu

Reputation: 31

Is there any way to monitor specified AWS service health status such as SES?

I am using SES and Mandrill to send my transaction mail, and SES is the default. And I want to monitor whether SES is down so that I can switch my mail service from SES to Mandrill.

Upvotes: 0

Views: 210

Answers (2)

Matthew Arthur
Matthew Arthur

Reputation: 393

Alternately you could use a Lambda that triggers via cron to curl the AWS status website bdcloud posted above and send a notification via CloudWatch Alerts if the status text indicates an SES error.

Upvotes: 0

Prabhakar Reddy
Prabhakar Reddy

Reputation: 5124

You can check the health of an AWS service here .If you want programmatic access then you can use AWS Health but it requires a Business or Enterprise support plan from AWS Support as mentioned in the documentation.

Upvotes: 1

Related Questions