<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Website Monitoring Blog &#187; website monitoring</title>
	<atom:link href="http://www.fastmonitoring.com/category/website-monitoring/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fastmonitoring.com</link>
	<description>web site monitoring :: web server performance :: website uptime</description>
	<lastBuildDate>Wed, 30 Jun 2010 13:28:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Creating a Simple HTTP Ping Utility to Monitor Your Site Latency</title>
		<link>http://www.fastmonitoring.com/2010-06-30/creating-a-simple-http-ping-utility-to-monitor-your-site-latency/</link>
		<comments>http://www.fastmonitoring.com/2010-06-30/creating-a-simple-http-ping-utility-to-monitor-your-site-latency/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 13:28:00 +0000</pubDate>
		<dc:creator>Alex Ivanoff</dc:creator>
				<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://www.fastmonitoring.com/?p=154</guid>
		<description><![CDATA[While surfing the web, I encountered a ready solution (written in Perl) that can be used to check websites&#8217; latency. How to install: Install Net::HTTP, and copy the shell script to a suitable location. #!/usr/bin/perl  -w # # Program: HTTP Ping &#60;http-ping.pl&#62; # # Author: Matty &#60; matty91 at gmail dot com &#62; # # [...]]]></description>
			<content:encoded><![CDATA[<p>While surfing the web, I encountered a ready solution (written in Perl) that can be used to check websites&#8217; latency.</p>
<p>How to install:</p>
<p>Install Net::HTTP, and copy the shell script to a suitable location.</p>
<blockquote><p><span id="more-154"></span>#!/usr/bin/perl  -w<br />
#<br />
# Program: HTTP Ping &lt;http-ping.pl&gt;<br />
#<br />
# Author: Matty &lt; matty91 at gmail dot com &gt;<br />
#<br />
# Current Version: 1.1<br />
#<br />
# Revision History:<br />
#<br />
# Version 1.1<br />
#     Added checks for arguments<br />
#<br />
# Purpose:<br />
#  Reports latency between a web server and a given host<br />
#<br />
# License:<br />
#   This program is free software; you can redistribute it and/or modify it<br />
#   under the terms of the GNU General Public License as published by the<br />
#   Free Software Foundation; either version 2, or (at your option) any<br />
#   later version.<br />
#<br />
#   This program is distributed in the hope that it will be useful,<br />
#   but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the<br />
#   GNU General Public License for more details.<br />
#<br />
#   You should have received a copy of the GNU General Public License<br />
#   along with this program; if not, write to the Free Software<br />
#   Foundation, 59 Temple Place &#8211; Suite 330, Boston, MA 02111-1307, USA.<br />
#<br />
# Usage<br />
#  Usage: http-ping.pl [ -s server ] [ -p port ] [ -d delay ] [ -u uri ] [ -h ]<br />
#<br />
# Example:<br />
#  ./http-ping.pl -s www.fastmonitoring.com -p 80 -d 5 -u /index.html<br />
#   Querying HTTP server www.fastmonitoring.com:80 every 5 seconds (Ctrl-C to stop):<br />
#      Mon Nov 29 18:09:59 2004: TCP Connection Time=0.052s HTTP GET Time=0.051s [Normal Delay]<br />
#      Mon Nov 29 18:10:04 2004: TCP Connection Time=0.036s HTTP GET Time=0.052s [Normal Delay]<br />
#      Mon Nov 29 18:10:09 2004: TCP Connection Time=0.034s HTTP GET Time=0.052s [Normal Delay]</p>
<p>use Net::HTTP;<br />
use Time::HiRes qw (time);<br />
use Getopt::Std;</p>
<p>############################<br />
# Globals                  #<br />
############################<br />
my $httpConnection = 0;<br />
my $content = 0;<br />
my $buffer = 0;<br />
my $buffer_size = 8192;<br />
my $excessive_delay = 1;</p>
<p>####################################<br />
# Get the parameters from the user #<br />
####################################<br />
%options=();<br />
getopts(&#8220;d:hp:s:u:&#8221;,\%options);</p>
<p>my $delay = defined($options{d}) ? $options{d} : 10;<br />
my $port = defined($options{p}) ? $options{p} : 80;<br />
my $server = defined($options{s}) ? $options{s} : &#8220;localhost&#8221;;<br />
my $uri = defined($options{u}) ? $options{u} : &#8220;/&#8221;;</p>
<p>if (defined $options{h} ) {<br />
printf(&#8220;Usage: http-ping.pl [ -s server ] [ -p port ] [ -d delay ] [ -u uri ] [ -h ]\n&#8221;);<br />
exit(1);<br />
}</p>
<p>#######################################<br />
# Let the user know what we are doing #<br />
#######################################</p>
<p>printf(&#8220;Issuing GET request for $uri on HTTP server $server:$port every $delay seconds (Ctrl-C to stop):\n&#8221;);</p>
<p>#############################<br />
# Connect to server         #<br />
#############################<br />
while (1) {<br />
# Calculate the time it takes to establish a TCP connection ( SYN, SYN/ACK, ACK )<br />
my $start = time();<br />
my $httpConnection = Net::HTTP-&gt;new( Host =&gt; $server )<br />
|| die $@;<br />
my $tcpConnectionTime = time() &#8211; $start;</p>
<p># Calculate the time it takes to GET / and process it<br />
$start = time();</p>
<p>$httpConnection-&gt;write_request(GET =&gt; &#8220;$uri&#8221;, &#8220;User-Agent&#8221; =&gt; &#8220;MTY/1.0.5f&#8221;);</p>
<p>while (  $content =  $httpConnection-&gt;read_entity_body($buffer, $buffer_size) ) {<br />
}<br />
my $httpConnectionTime = time() &#8211; $start;</p>
<p>if ( ($tcpConnectionTime &gt; $excessive_delay) || ( $httpConnectionTime &gt; $excessive_delay))  {<br />
my $dt = scalar localtime time;<br />
printf(&#8220;  %s: TCP Connection Time=%.3fs HTTP GET Time=%.3fs [Excessive Delay]\n&#8221;,$dt, $tcpConnectionTime, $httpConnectionTime);<br />
} else {<br />
my $dt = scalar localtime time;<br />
printf(&#8220;  %s: TCP Connection Time=%.3fs HTTP GET Time=%.3fs [Normal Delay]\n&#8221;,$dt, $tcpConnectionTime, $httpConnectionTime);<br />
}</p>
<p>sleep($delay);<br />
}</p>
<p>That&#8217;s it. Enjoy!</p></blockquote>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">Install Net::HTTP, and copy the shell script to a suitable location</div>
<img src="http://www.fastmonitoring.com/?ak_action=api_record_view&id=154&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.fastmonitoring.com/2010-06-30/creating-a-simple-http-ping-utility-to-monitor-your-site-latency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uptime Meter: Show Your Customers That You Are Reliable</title>
		<link>http://www.fastmonitoring.com/2009-07-02/uptime-meter-you-are-reliable/</link>
		<comments>http://www.fastmonitoring.com/2009-07-02/uptime-meter-you-are-reliable/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 14:58:52 +0000</pubDate>
		<dc:creator>Alex Ivanoff</dc:creator>
				<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[uptime meter]]></category>

		<guid isPermaLink="false">http://www.fastmonitoring.com/?p=121</guid>
		<description><![CDATA[Perhaps some of you guys noticed a new button that appeared on my blog a few days ago. From now my blog is monitored every 30 minutes and my uptime statistics is available for public. Want to get a similar button? That&#8217;s easy. Check Dotcom-Monitor&#8217;s Uptime Meter, you don&#8217;t even need to sign up to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-122" style="margin-right: 7px;" title="uptime-meter" src="http://www.fastmonitoring.com/wp-content/uploads/uptime-meter.jpg" alt="uptime-meter" width="200" height="120" />Perhaps some of you guys noticed a new button that appeared on my blog a few days ago. From now my blog is monitored every 30 minutes and my uptime statistics is available for public. Want to get a similar button? That&#8217;s easy. Check Dotcom-Monitor&#8217;s <a href="http://www.dotcom-monitor.com/StampEdit.aspx">Uptime Meter</a>, you don&#8217;t even need to sign up to use the feature and of course it&#8217;s free. Just provide the URL you&#8217;d like to monitor, get the code for your website and add it to your site. That&#8217;s it.</p>
<p><span id="more-121"></span>In accordance with the official press-release,</p>
<p>&#8216;Dotcom-Monitor&#8217;s free website monitoring Uptime Meter tool provides customers a unique, easy-to-use, targeted solution for quickly monitoring and validating uptime that affects website performance and revenues. The Uptime Meter is designed to aggregate uptime and automatically update and display the results on the user&#8217;s website via the Uptime Meter Button. The Uptime Meter Button displays accurate update metrics, such as &#8220;Uptime 99.999%&#8221;, based on the aggregated data since the date of original implementation.&#8217;</p>
<p>More details can be found here: Dotcom-Monitor&#8217;s <a href="http://www.dotcom-monitor.com/StampEdit.aspx">Uptime Meter</a>.</p>
<p>(http://www.dotcom-monitor.com/StampEdit.aspx)</p>
<img src="http://www.fastmonitoring.com/?ak_action=api_record_view&id=121&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.fastmonitoring.com/2009-07-02/uptime-meter-you-are-reliable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why IPv6 Performance Monitoring Is A Global Necessity</title>
		<link>http://www.fastmonitoring.com/2009-02-20/why-ipv6-performance-monitoring-is-a-global-necessity/</link>
		<comments>http://www.fastmonitoring.com/2009-02-20/why-ipv6-performance-monitoring-is-a-global-necessity/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 15:10:33 +0000</pubDate>
		<dc:creator>Alex Ivanoff</dc:creator>
				<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[ipv6 monitoring]]></category>

		<guid isPermaLink="false">http://www.fastmonitoring.com/?p=96</guid>
		<description><![CDATA[The switch to IPv6 is on. In June 2008, the U.S. federal government, which is arguably the world’s largest single enterprise, required that all its executive agencies add IPv6 to their network backbones. The European Commission recently set an IPv6 target adoption rate of 25 percent by 2010, and the chairman of the Asia Pacific [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fastmonitoring.com/wp-content/uploads/ipv6-performance-monitoring.jpg"><img class="size-medium wp-image-97" style="padding-left: 8px; margin-left: 8px; float: right;" title="ipv6-performance-monitoring" src="http://www.fastmonitoring.com/wp-content/uploads/ipv6-performance-monitoring.jpg" alt="ipv6 performance monitoring" width="200" height="120" /></a></p>
<p>The switch to IPv6 is on.  In June 2008, the U.S. federal government, which is arguably the world’s largest single enterprise, required that all its executive agencies add IPv6 to their network backbones.  The European Commission recently set an IPv6 target adoption rate of 25 percent by 2010, and the chairman of the Asia Pacific Network Information Centre predicted that all IPv4 addresses will be depleted by 2011, forcing wide-scale IPv6 adoption. A number of Internet powerhouses, such as Google and Alta Vista, have now deployed IPv6 accessible websites.  Operating systems, such as the latest versions of Microsoft Windows, include IPv6 support.</p>
<p><span id="more-96"></span></p>
<p>IPv6 will become the essential backbone protocol for next-generation networking. IPv6 boasts improved network reliability, lower costs and improved security in addition to its vastly expanded addressing and routing capabilities (achieved by increasing the address length from 32 to 128 bits).  While the benefits of IPv6 are apparent, performance management will becomes inherently more difficult as a single IPv6 subnet is as large as the entire Internet today.</p>
<p>As with IPv4, IPv6 quality of service is implemented at Layer 2 and Layer 3 of the TCP/IP stack. A number of network management vendors support IPv6, but while passive network management tools may comply with the new version, some may not include the evolving set of features for IPv6 support.  Alone, passive monitoring may be unable to properly detect performance issues experienced by the end user, and for web-enabled businesses, the end user experience is the most critical element of service quality.</p>
<p>For business and organizations deploying IPv6 websites, performance management and service-level agreement monitoring become more complicated due to the coexistence of IPv4 and IPv6, the exponential size of IPv6 addressing and routing, and the lack of a killer application to drive wide-scale and accelerated deployment.</p>
<p>IPV6 and IPv4 headers are not interoperable.  IPv4 is a best-effort service where all packets are treated equally; IPv6 implements quality-of-service (QOS) by classifying IP packets using an 8-bit traffic class field and a 20-bit flow label field in the header. While IPv6 web sites can be accessed using dual stacks, tunneling and protocol translation, native IPv6 performance monitoring is essential to determine whether performance issues are originating in the end-to-end IPv6 environment.  Companies that have deployed IPv6 websites must utilize native IPv6 performance monitoring to isolate service-level agreement (SLA) issues for these sites as IPv4 monitoring alone will not help isolate IPv6 QoS issues.</p>
<p>There are several reasons to actively monitor IPv6 websites in a native environment:</p>
<ul>
<li>Because there’s a gap between IPv6 capabilities and current network management tools, active monitoring is essential.</li>
<li>As with any new technology, there is the potential for flaws, which may impact uptime and performance.</li>
<li>Pv6 will lead to larger networks that directly address more network devices, increasing the overall complexity.</li>
<li>IPv6 end-to-end security features, while improving security, will make it harder to analyze network traffic.</li>
</ul>
<p>Dotcom-Monitor has deployed a native IPv6 monitoring bureau to offer end-to-end IPv6 performance monitoring for QOS and SLA management from the end-user perspective.  With active web site monitoring using native IPv6, companies deploying IPv6 website can ensure that SLAs are being met specific to IPv6 performance. End-to-end IPv6 performance monitoring is crucial to maximize the return on investment of the deployment and to understand its effects on the IT operations and the business.</p>
<p>Dotcom-Monitor provides extensive real-time reporting using graphical charts that explain success/failure rates for specific performance checks, response/download times, uptime/downtime, load variations by hour/day/week and much more.  For e-commerce sites, Dotcom-Monitor will measure quality of service for each phase of the transaction process as well as performance comparisons among different geographic areas. Dotcom-Monitor provides instantaneous notification of website and web application performance issues, based on customer configured notification and escalation parameters.</p>
<p><strong>About Dotcom-Monitor:</strong></p>
<p>Dotcom-Monitor is the leader and innovator in advanced <a href="http://www.dotcom-monitor.com/website-monitoring.asp">website performance</a> monitoring services. Founded in 1998, Dotcom-Monitor has saved over 3,000 companies money by insuring maximum website uptime — at a cost up to 50 percent less than other <a href="http://www.dotcom-monitor.com/">web site monitoring</a> services.</p>
<img src="http://www.fastmonitoring.com/?ak_action=api_record_view&id=96&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.fastmonitoring.com/2009-02-20/why-ipv6-performance-monitoring-is-a-global-necessity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Monitor Usage: Short Guide to Website Monitoring</title>
		<link>http://www.fastmonitoring.com/2008-12-29/monitor-usage-guide-monitoring/</link>
		<comments>http://www.fastmonitoring.com/2008-12-29/monitor-usage-guide-monitoring/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 14:33:10 +0000</pubDate>
		<dc:creator>Alex Ivanoff</dc:creator>
				<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[monitor usage]]></category>
		<category><![CDATA[monitoring usage]]></category>

		<guid isPermaLink="false">http://www.fastmonitoring.com/?p=77</guid>
		<description><![CDATA[As a rule, commercial website monitoring services offer so many features and capabilities that an ordinary user may feel trapped in realm of buttons and unknown terms when trying to master website monitoring control panel. Monitoring usage may turn into a nightmare for an unexperienced webmaster. I fully understand that there are people who&#8217;d like [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fastmonitoring.com/wp-content/uploads/monitor-usage-guide.jpg"><img class="alignleft size-medium wp-image-78" style="margin-right: 7px;" title="Monitor Usage Guide" src="http://www.fastmonitoring.com/wp-content/uploads/monitor-usage-guide.jpg" alt="" width="200" height="120" /></a>As a rule, commercial website monitoring services offer so many features and capabilities that an ordinary user may feel trapped in realm of buttons and unknown terms when trying to master website monitoring control panel. Monitoring usage may turn into a nightmare for an unexperienced webmaster. I fully understand that there are people who&#8217;d like to enjoy website monitoring services without having to read tons of technical literature and documents. That&#8217;s why I&#8217;ve prepared this short Guide. As an example I&#8217;ve chosen Dotcom-Monitor&#8217;s control panel.</p>
<p><span id="more-77"></span></p>
<p>Let&#8217;s see how to set up the most typical tasks.</p>
<p>I. <strong>HTTP Monitoring Usage</strong> (non-secure websites).</p>
<p>In most cases you will be asked to specify:</p>
<ul>
<li>Task Name: just type in something to identify the current task, i.e.: My Site Homepage;</li>
<li>Maximum Connection Timeout (in seconds): how many seconds web monitoring server tries to connect to your website before it considers the connection failed and initializes downtime notification process;</li>
<li>Request Type: Select either GET or POST;</li>
<li>URL: the URL of the page to be watched, i.e.: http://www.mysite.com/mypage.html;</li>
<li>Keywords: you provide certain words or phrases from the content of your web page, which web monitoring agents constantly scan the page for. If the agents fail to find the phrase, the page has probably hacked/defaced and the content has been replaced. (An agent is one of the servers of the web monitoring provider that simulates activity of a real user);</li>
</ul>
<p>II. <strong>FTP Server Monitor</strong>:</p>
<ul>
<li> Task Name: nothing new here, just invent something self explanatory;</li>
<li> Maximum Connection Timeout: don&#8217;t forget that timeout is usually counted in seconds;</li>
<li> Server: your FTP server, i.e.: ftp://ftp.mysite.com;</li>
<li> Username, Password: if you want monitoring agents to check the availability of files on your FTP server, provide your login and password;</li>
<li> Get directory listing: if you select YES, the web monitoring agent will try to get the directory listing;</li>
<li> Directory: if you specify the directory name here, the agent will switch to this directory just after it gets connected. I.e.: /files/;</li>
<li>Check File: web monitoring agents will try to check the availability of the file, i.e. my-file.html;</li>
<li> Download File: if you specify a filename, an attempt to download the file will be made. I.e.: my-file.html.</li>
</ul>
<p>III. <strong>DNS Monitor Usage</strong>. If you want to be sure that your DNS server operates correctly all the time, you might want to set up DNS Server monitoring. In this case be ready to provide:</p>
<ul>
<li> Task Name: specify a name for the task, e.g.: My DNS Server Monitoring;</li>
<li> Maximum Connection Timeout: the number of seconds that the monitoring agent (for the &#8220;monitoring agent&#8221; concept explanation see Part I of the article) is going to try to get the URL resolved before the attempt is considered a failure.</li>
<li> Server: the name of the DNS server;</li>
<li> URL to Resolve: the URL that is going to be resolved, e.g. http://www.mysite.com;</li>
</ul>
<p>IV. <strong>UDP (User Data Protocol) monitoring</strong>:</p>
<ul>
<li> Task Name: specify a name for the task, e.g. UDP monitoring;</li>
<li> Maximum Connection Timeout (in seconds): 60 is a usual value;</li>
<li> Server: the server to be monitored, e.g. 122.88.21.11;</li>
<li> Port: specify the port to use when monitoring agents will try to connect to your server;</li>
</ul>
<p>V. <strong>POP3 (Incoming Mail Server) monitoring:</strong> website monitoring agents will try to login to your incoming mail server and get a correct response with a certain frequency.</p>
<ul>
<li> Task Name: specify a name for the task, e.g. POP Server Monitoring;</li>
<li> Maximum Connection Timeout (in seconds): 60 is a usual value;</li>
<li> Server: your POP3 server(incoming mail server), e.g. pop.somehost.com;</li>
<li> Login to Server: select YES if you want the monitoring agent to login to your mail server. You will have to provide your e-mail account data for monitoring agents to log in. If you select NO, all the monitoring agent will be able to check is whether your server is up or not.</li>
<li> User Name: a user name to log in to the POP server;</li>
<li> Password: your e-mail password;</li>
</ul>
<p>VI. <strong>SMTP (Outgoing Mail Server) monitor usage</strong>: website monitoring agents will connect to your SMTP Server and get a correct response with a certain frequency.</p>
<ul>
<li> Task Name: specify a name for the task, e.g. SMTP Server Monitoring;</li>
<li> Maximum Connection Timeout (in seconds): 60 is a usual value;</li>
<li> Server: SMTP server (your outgoing mail server), e.g. smtp.mysite.com;</li>
</ul>
<p>VII. <strong>SMTP/POP3 (Incoming Mail Server and Outgoing Full Cycle) monitoring</strong> usage: website monitoring agents will try to send an e-mail and then receive it within a given period of time.</p>
<ul>
<li> Task Name: specify a name for the task, e.g. &#8216;SMTP/POP monitoring task&#8217;;</li>
<li> Maximum Connection Timeout (in seconds): 60 is a usual value;</li>
<li>SMTP Server: your SMTP server name, e.g. smtp.mysite.com;</li>
<li> Email to send a test message: e.g. myemail@mysite.com</li>
<li>POP3 Server: your POP3 server name, e.g. pop.mysite.com;</li>
<li> POP3 User Name: your username to login to the POP server;</li>
<li> POP3 Password: your POP3 password;</li>
<li> Maximum timeout for test message receiving: 60 is a usual default.</li>
</ul>
<p>These were the most typical tasks to set up in your website monitoring account. In my next guide I&#8217;m going to tell you how to deal with notification groups, how to set up phone alerts, and how not to be awaken at 3 a.m. when your website suddenly goes down <img src='http://www.fastmonitoring.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Good luck!</p>
<img src="http://www.fastmonitoring.com/?ak_action=api_record_view&id=77&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.fastmonitoring.com/2008-12-29/monitor-usage-guide-monitoring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>11% of AdWords Ads Lead To Dead Pages</title>
		<link>http://www.fastmonitoring.com/2008-11-25/adwords-ads-dead-pages/</link>
		<comments>http://www.fastmonitoring.com/2008-11-25/adwords-ads-dead-pages/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 13:16:48 +0000</pubDate>
		<dc:creator>Alex Ivanoff</dc:creator>
				<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[ppc]]></category>

		<guid isPermaLink="false">http://www.fastmonitoring.com/?p=65</guid>
		<description><![CDATA[Jeremy Mayes, the author of the PPC Discussions blog, told about his two-month experiment: Jeremy tracked every AdWords ad he clicked and created a detailed statistics for every click. He managed to click more than 1000 ads during these two months. Along with many interesting data he found out one astonishing fact: about 11% of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fastmonitoring.com/wp-content/uploads/adwords-clicks-wasted.jpg"><img class="alignright size-medium wp-image-66" style="margin-left: 7px;" title="AdWords Clicks Wasted" src="http://www.fastmonitoring.com/wp-content/uploads/adwords-clicks-wasted.jpg" alt="" width="200" height="120" /></a>Jeremy Mayes, the author of the PPC Discussions blog, told about his <a href="http://www.ppcdiscussions.com/2008/11/11-of-adwords-clicks-are-wasted-on-dead.html">two-month experiment</a>: Jeremy tracked every AdWords ad he clicked and created a detailed statistics for every click. He managed to click more than 1000 ads during these two months. Along with many interesting data he found out one astonishing fact: about 11% of all clicks lead to dead pages! The reasons for dead pages may be different &#8211; server errors, removed or renamed landing pages, site down, typos in destination URLs or even malice &#8211; but the result is empressive &#8211; 11% of advertisents simply don&#8217;t work, meaning 11% of all the advertising funds are just wasted! <em></em></p>
<p><em>What can be done to avoid losses?</em> Jeremy recommends monitoring the landing pages with website monitoring services. If a landing page goes down or gets accidentally removed, you will be the first who finds out.</p>
<img src="http://www.fastmonitoring.com/?ak_action=api_record_view&id=65&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.fastmonitoring.com/2008-11-25/adwords-ads-dead-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Site Monitoring Services Chart</title>
		<link>http://www.fastmonitoring.com/2008-11-24/website-monitoring-services-wi/</link>
		<comments>http://www.fastmonitoring.com/2008-11-24/website-monitoring-services-wi/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 16:21:18 +0000</pubDate>
		<dc:creator>Alex Ivanoff</dc:creator>
				<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[website monitoring providers]]></category>
		<category><![CDATA[website monitoring services]]></category>
		<category><![CDATA[wiki]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://www.fastmonitoring.com/?p=59</guid>
		<description><![CDATA[While surfing Wikipedia I&#8217;ve found a nice attempt to embrace the major players at website monitoring market and compare them. A table contains details of 33 most famous companies providing web site monitoring services, both commercial and free. The table has been created on November, 13, and by now it has descriptions for about 40% [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fastmonitoring.com/wp-content/uploads/wikipedia-logo.jpg"><img class="alignleft size-medium wp-image-60" style="margin-right: 7px;" title="wikipedia logo" src="http://www.fastmonitoring.com/wp-content/uploads/wikipedia-logo.jpg" alt="" width="200" height="120" /></a>While surfing Wikipedia I&#8217;ve found a nice <a rel="nofollow" href="http://http://en.wikipedia.org/wiki/Comparison_of_website_monitoring_tools" target="_blank">attempt</a> to embrace the major players at website monitoring market and compare them. A table contains details of <strong>33</strong> most famous companies providing web site monitoring services, both commercial and free. The table has been created on November, 13, and by now it has descriptions for about 40% of the companies listed there. The information provided in the table includes minimum check intervals, supported protocols, approximate monthly cost, interface language, notification options, etc.</p>
<img src="http://www.fastmonitoring.com/?ak_action=api_record_view&id=59&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.fastmonitoring.com/2008-11-24/website-monitoring-services-wi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Monitoring Companies List &#8211; Part I</title>
		<link>http://www.fastmonitoring.com/2008-11-04/website-monitoring-companies-list-part-i/</link>
		<comments>http://www.fastmonitoring.com/2008-11-04/website-monitoring-companies-list-part-i/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 18:49:26 +0000</pubDate>
		<dc:creator>Alex Ivanoff</dc:creator>
				<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[web site monitoring]]></category>

		<guid isPermaLink="false">http://www.fastmonitoring.com/?p=46</guid>
		<description><![CDATA[Today I&#8217;ve collected a list of most important website monitoring companies, that provide both commercial and free services. Dotcom-Monitor &#8211; Affordable Web site monitoring and testing for individual sites, applications, and networks. We offer load testing, network monitoring and free website monitoring trials. WebSitePulse &#8211; Remote web server and website monitoring with instant alerts via [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fastmonitoring.com/wp-content/uploads/website-monitoring-list.jpg"><img class="alignleft size-medium wp-image-47" style="margin-right: 7px;" title="website monitoring companies list" src="http://www.fastmonitoring.com/wp-content/uploads/website-monitoring-list.jpg" alt="" width="200" height="165" /></a>Today I&#8217;ve collected a list of most important website monitoring companies, that provide both commercial and free services.</p>
<ul>
<li><a rel="nofollow" href="http://www.dotcom-monitor.com/">Dotcom-Monitor</a> &#8211; Affordable Web site monitoring and testing for individual sites, applications, and networks. We offer load testing, network monitoring and free website monitoring trials.</li>
<li><a rel="nofollow" href="http://www.websitepulse.com/">WebSitePulse</a> &#8211; Remote web server and website monitoring with instant alerts via SMS, e-mail, and phone when your website becomes unavailable. Real-time monitoring reports and diagnostic tools help you minimize website downtime. Global worldwide monitoring locations. Free monitoring service available.</li>
<li><a rel="nofollow" href="http://www.watchmouse.com/en/">WatchMouse</a> &#8211; Web site monitoring service for web server performance measurement. Free and paid remote web site and server monitoring</li>
<li><a rel="nofollow" href="http://www.webmetrics.com/">Webmetrics</a> &#8211; Website Performance Monitoring, Web Application Performance Monitoring, Load Testing</li>
<li><a rel="nofollow" href="http://www.uptrends.com/">Uptrends</a> &#8211; a leading provider of hosted website and server monitoring services. Reduce costly downtime. Free 4 week trial!</li>
<li><a rel="nofollow" href="http://www.serviceuptime.com/">Service Uptime</a> &#8211; Free website monitoring service checks your site from worldwide locations and alerts you instantly via email or SMS when it becomes unavailable. Detailed uptime statistics and performance reports available.</li>
<li><a rel="nofollow" href="http://host-tracker.com/">HostTracker</a> &#8211; Website Uptime Monitoring Service</li>
<li><a rel="nofollow" href="http://www.siteuptime.com/">Siteuptime</a> provides website monitoring services. Receive instant email notices when your website becomes unavailable and view detailed uptime statistics and performance reports for your website monitors.</li>
</ul>
<img src="http://www.fastmonitoring.com/?ak_action=api_record_view&id=46&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.fastmonitoring.com/2008-11-04/website-monitoring-companies-list-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is a Web Site Monitoring Service?</title>
		<link>http://www.fastmonitoring.com/2008-11-03/what-is-a-web-site-monitoring-service/</link>
		<comments>http://www.fastmonitoring.com/2008-11-03/what-is-a-web-site-monitoring-service/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 14:01:32 +0000</pubDate>
		<dc:creator>Alex Ivanoff</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[alert]]></category>
		<category><![CDATA[downtime]]></category>
		<category><![CDATA[monitoring agent]]></category>
		<category><![CDATA[notification]]></category>
		<category><![CDATA[uptime]]></category>
		<category><![CDATA[web site monitoring]]></category>

		<guid isPermaLink="false">http://www.fastmonitoring.com/?p=33</guid>
		<description><![CDATA[You spend days and nights on your new brainchild. Your friends have forgotten how you look like because you are so busy with your new website. Then some time passes, and your brilliant ideas have finally been materialized &#8212; soon you will be earning hundreds, thousands, or even millions. The more time and money you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fastmonitoring.com/wp-content/uploads/website-monitoring-report.jpg"><img class="alignleft size-medium wp-image-31" style="margin-right: 7px;" title="Example Report of a Website Monitoring Service" src="http://www.fastmonitoring.com/wp-content/uploads/website-monitoring-report.jpg" alt="Web Site Monitoring" width="250" height="222" /></a> You spend days and nights on your new brainchild. Your friends have forgotten how you look like because you are so busy with your new website. Then some time passes, and your brilliant ideas have finally been materialized &#8212; soon you will be earning hundreds, thousands, or even millions.</p>
<p>The more time and money you invest in your start-up, the more important the question of reputation and trustworthiness is. There is a basic rule: your e-business must be accessible <strong>every</strong> second to <strong>every</strong> Internet user from all over the world. Downtime for any reason is completely unacceptable. And that&#8217;s why you should consider runnings <a title="Website performance monitoring" href="http://www.dotcom-monitor.com/website-monitoring.asp">website performance</a> tests and signing up for a <a title="Web site monitoring" href="http://www.dotcom-monitor.com/">web site monitoring</a> account.</p>
<p><span id="more-33"></span></p>
<p>Let&#8217;s see how website monitoring works. As I&#8217;ve already said, your website must be accessible <strong>every</strong> second to <strong>every</strong> Internet user. To ensure your site is available throughout the world, website monitoring services set up special servers, called Monitoring Agents, in data centers on all the continents (excluding Antarctica <img src='http://www.fastmonitoring.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ). The monitoring agents check your web server with a set frequency. Quite a lot of stuff can be monitored: HTTP/HTTPS servers, FTP, POP3/SMTP, IMAP, DNS, ICMP, UDP, video streaming servers and much more. If one or more monitoring agents report downtime, an alert message for the webmaster is generated. Currently, notification options include:</p>
<ul>
<li>email</li>
<li>regular and cell phones</li>
<li>sms</li>
<li>fax</li>
<li>pagers</li>
<li>&#8230;</li>
</ul>
<p>Most advanced website monitoring services are capable of doing multi-step actions: for example, monitoring agents can login to your clients&#8217; zone, choose a DVD in your online-store, then go to the shopping cart and &#8220;buy&#8221; it, ensuring availability of all the payment steps for an ordinary customer.</p>
<p>Today web site monitoring companies offer a wide range of services. The pricing also varies greatly. Here on fastmonitoring.com I&#8217;ll try to provide as much info as possible to help you choose your web site monitoring service.</p>
<img src="http://www.fastmonitoring.com/?ak_action=api_record_view&id=33&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.fastmonitoring.com/2008-11-03/what-is-a-web-site-monitoring-service/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
