0

Is it possible to get Amazon web services health api flags via an API. Their RSS feed does not mention the actual status of the given service.

I am looking for a possible API which returns,

  1. Service is operating normally
  2. Performance issues
  3. Service disruption
  4. Informational message

I rather read an answer which points me to the documentation which I may have skipped. At last if nothing I might go down to the screen scrapping path. However it isn't viable at all.

Any thoughts.

4

1 回答 1

2

目前没有用于此的 API。我之前曾向他们询问过 cloudwatch 警报或 API。也许它正在筹备中?

但是,您可以使用 google feed api 之类的东西轻松解析 RSS 提要: https ://developers.google.com/feed/v1/

如果没有帖子假设,服务运行正常。否则阅读“post's”标题解析上的文本“:”前半部分是状态。

例如,如果您的最新帖子是

<item>
  <title type="text">Performance issues: Route 53 Elevated API Error Rate</title>
  <link>http://status.aws.amazon.com</link>
  <pubDate>Wed, 16 Jan 2013 19:43:43 PST</pubDate>
  <guid>http://status.aws.amazon.com/#route53_1358394223</guid>
  <description>We are continuing to work to resolve elevated error rates to our control API. This does not impact queries to existing DNS records.</description>
 </item>

然后您的状态为“性能问题”,直到您收到标题为“服务正常运行”的新帖子

于 2014-01-20T13:14:52.807 回答