<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Checking and logging server uptime with AutoIt</title> <atom:link href="http://www.rarst.net/script/server-uptime/feed/" rel="self" type="application/rss+xml" /><link>http://www.rarst.net/script/server-uptime/</link> <description>cynical thoughts on software, web, etc</description> <lastBuildDate>Mon, 15 Mar 2010 21:02:56 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: reboltutorial</title><link>http://www.rarst.net/script/server-uptime/#comment-10146</link> <dc:creator>reboltutorial</dc:creator> <pubDate>Mon, 17 Aug 2009 19:17:01 +0000</pubDate> <guid
isPermaLink="false">http://www.rarst.net/?p=406#comment-10146</guid> <description>You can send email with Rebol and if you want to monitor your server it&#039;s easier than with Autoit, it&#039;s also free even for commercial use :)http://reboltutorial.com/blog/monitor-website/str-url: ask &quot;url to monitor? &quot;
url: to-url str-url
str-email: ask &quot;email to notify? &quot;
email: to-email str-emailforever [
if error? try [
read url
] [
;pre-requisite: you must setup your email see here
send email &quot;Site is down.&quot;
]
wait 0:10
]</description> <content:encoded><![CDATA[<p>You can send email with Rebol and if you want to monitor your server it&#8217;s easier than with Autoit, it&#8217;s also free even for commercial use :)</p><p><a
href="http://reboltutorial.com/blog/monitor-website/">http://reboltutorial.com/blog/monitor-website/</a></p><p>str-url: ask &#8220;url to monitor? &#8221;<br
/> url: to-url str-url<br
/> str-email: ask &#8220;email to notify? &#8221;<br
/> email: to-email str-email</p><p>forever [<br
/> if error? try [<br
/> read url<br
/> ] [<br
/> ;pre-requisite: you must setup your email see here<br
/> send email "Site is down."<br
/> ]<br
/> wait 0:10<br
/> ]</p> ]]></content:encoded> </item> <item><title>By: IsMyBlogWorking.com &#8211; better than ping &#124; Rarst.net</title><link>http://www.rarst.net/script/server-uptime/#comment-10019</link> <dc:creator>IsMyBlogWorking.com &#8211; better than ping &#124; Rarst.net</dc:creator> <pubDate>Mon, 10 Aug 2009 17:36:36 +0000</pubDate> <guid
isPermaLink="false">http://www.rarst.net/?p=406#comment-10019</guid> <description>[...] had played with checking if site is alive in my AutoIt script and it is harder to implement than it seems. On other hand if there is no need for continuous [...]</description> <content:encoded><![CDATA[<p>[...] had played with checking if site is alive in my AutoIt script and it is harder to implement than it seems. On other hand if there is no need for continuous [...]</p> ]]></content:encoded> </item> <item><title>By: Rarst</title><link>http://www.rarst.net/script/server-uptime/#comment-9089</link> <dc:creator>Rarst</dc:creator> <pubDate>Thu, 18 Jun 2009 14:59:10 +0000</pubDate> <guid
isPermaLink="false">http://www.rarst.net/?p=406#comment-9089</guid> <description>@Tom ThompsonThanks will take a look at it. :)Overall I am not too interested in whole infrasctructure monitoring. This script is more of exercise - I like to write bits of different code and modularize to have such functional snippets ready for when I need something complex done.</description> <content:encoded><![CDATA[<p>@Tom Thompson</p><p>Thanks will take a look at it. :)</p><p>Overall I am not too interested in whole infrasctructure monitoring. This script is more of exercise &#8211; I like to write bits of different code and modularize to have such functional snippets ready for when I need something complex done.</p> ]]></content:encoded> </item> <item><title>By: Tom Thompson</title><link>http://www.rarst.net/script/server-uptime/#comment-9088</link> <dc:creator>Tom Thompson</dc:creator> <pubDate>Thu, 18 Jun 2009 13:38:17 +0000</pubDate> <guid
isPermaLink="false">http://www.rarst.net/?p=406#comment-9088</guid> <description>This is not a AutoIt script but I use The Dude to accomplish the same thing.  It is lightweight, free, runs as a service and is client/server based.http://www.mikrotik.com/thedude.php</description> <content:encoded><![CDATA[<p>This is not a AutoIt script but I use The Dude to accomplish the same thing.  It is lightweight, free, runs as a service and is client/server based.</p><p><a
href="http://www.mikrotik.com/thedude.php">http://www.mikrotik.com/thedude.php</a></p> ]]></content:encoded> </item> <item><title>By: Rarst</title><link>http://www.rarst.net/script/server-uptime/#comment-9086</link> <dc:creator>Rarst</dc:creator> <pubDate>Thu, 18 Jun 2009 03:53:23 +0000</pubDate> <guid
isPermaLink="false">http://www.rarst.net/?p=406#comment-9086</guid> <description>@Ben ZippererThanks for suggestion. I saw that one mentioned in AutoIt forums as well, will check it out.Still it&#039;s not mission critical script and I like to keep AutoIt scripts... autoitish. :)</description> <content:encoded><![CDATA[<p>@Ben Zipperer</p><p>Thanks for suggestion. I saw that one mentioned in AutoIt forums as well, will check it out.</p><p>Still it&#8217;s not mission critical script and I like to keep AutoIt scripts&#8230; autoitish. :)</p> ]]></content:encoded> </item> <item><title>By: Ben Zipperer</title><link>http://www.rarst.net/script/server-uptime/#comment-9084</link> <dc:creator>Ben Zipperer</dc:creator> <pubDate>Thu, 18 Jun 2009 00:39:38 +0000</pubDate> <guid
isPermaLink="false">http://www.rarst.net/?p=406#comment-9084</guid> <description>Nice script!
I know it&#039;s not elegant or self-contained, but you could have your script invoke blat to send the report. I usually do this to send reports from non-SBS windows servers. Blat can be found at http://www.blat.net/</description> <content:encoded><![CDATA[<p>Nice script!<br
/> I know it&#8217;s not elegant or self-contained, but you could have your script invoke blat to send the report. I usually do this to send reports from non-SBS windows servers. Blat can be found at <a
href="http://www.blat.net/">http://www.blat.net/</a></p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching using disk

Served from: www.rarst.net @ 2010-03-16 13:34:58 -->