I have been using RSS Readers to read different websites and I thought it would be cool if Servers Alive had an RSS Feed. So I developed a RSS template file for Servers Alive.
Just take the following code and past it into a file (template.xml) and have it write to a xml page (alive.xml).
Point your rss reader at the file and you have a servers alive rss feed.
<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0">
<channel>
<title>Servers Alive Status</title>
<description>Servers Alive</description>
<language>en-us</language>
<generator>Servers Alive</generator>
<ttl>40</ttl>
<sa_report sort=status>
<item>
<title><SA_PRETTYNAME> - <SA_STATUS></title>
<description>
HostName: <SA_HOSTNAME><br />
Check Description: <SA_CHECKDESCRIPTION><br />
Status: <SA_STATUS><br />
Response: <SA_CHECKRESPONSE><BR />
<BR />
Last Change Date: <sa_statuschangedate><BR />
LastChangeTime: <sa_statuschangetime><BR />
<BR />
Round Trip: <SA_ROUNDTRIP><br />
Round Trip Avg: <SA_STATS_AVGRTRIP><br />
Round Trip Min:<SA_STATS_MINRTRIP><br />
Round Trip Max: <SA_STATS_MAXRTRIP><br />
<BR />
Uptime: <SA_STATS_UPTIME><br />
Downtime: <SA_STATS_DOWNTIME><br />
Maintenance Time: <SA_STATS_MAINTENANCETIME><br />
</description>
</item>
</sa_report>
</channel>
</rss>
And thanks to Brent Ozar for all of his great template examples!
Matt
