AWS Status feed #244
Replies: 3 comments 2 replies
-
Hi, I'm trying to produce visualisations just like the timeseries graph in your first image. When I set the connection options and Parsing options just as you have them in the screenshot, I am unable to produce a time-series graph as I get a 'Data is missing a number field' error. The data shows up just fine in Table view. Please could you let me know where I'm going wrong? |
Beta Was this translation helpful? Give feedback.
-
I'm trying to parse the status.aws.amazon.com/rss/all.rss RSS feed as suggested. It doesn't look like it work if we specify the "rss.channel[0].item" value as Rows/Root but it works if set the "rss.channel", this way looks like it can be set only for the specific service as a single row. |
Beta Was this translation helpful? Give feedback.
-
Ditto that following the tutorial does not yield the feed table anymore. this is the current status.aws.amazon.com/rss/all.rss |
Beta Was this translation helpful? Give feedback.
-
AWS Status Feeds in Grafana
In this example, we are going to see how we use use AWS status feeds as Grafana annotations. This will be useful when you are dealing with any AWS outages. For this, we are going to use the AWS RSS feed. You can find more feeds at AWS Status page
Connection setup
AWS status are open and no authentication required. So, you can simple create a datasource using infinity without any additional configuration.
Annotation setup
Once you create a annotation, you will perform the following steps
https://status.aws.amazon.com/rss/all.rss
as the URLrss.channel[0].item
as the URL. ( You can find this path from the original rss feed )title
,description
as columns and provide string typepubDate
column and mark this as 'DateTime'guid[0]._
as string. This is your link. So you can alias this to linkTable view of status items
You can follow the same query procedure in your table panel to get the results as Table
Alternate query method
If you are familiar with UQL query, you can achieve this with a simple query. Instead of select "XML" as your query type, you will choose "UQL" in this method and write the following UQL query.
Beta Was this translation helpful? Give feedback.
All reactions