<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Analysis and Synthesis</title>
	
	<link>http://www.webanalyticsnow.com</link>
	<description>Web Analytics with Aaron</description>
	<pubDate>Wed, 07 May 2008 23:29:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/WebAnalyticsWithAaron" type="application/rss+xml" /><feedburner:emailServiceId>1206792</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>Using Fiddler to watch Omniture server requests</title>
		<link>http://feeds.feedburner.com/~r/WebAnalyticsWithAaron/~3/285698120/</link>
		<comments>http://www.webanalyticsnow.com/2008/05/07/using-fiddler-to-watch-omniture-server-requests/#comments</comments>
		<pubDate>Wed, 07 May 2008 23:27:09 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
		
		<category><![CDATA[implementation]]></category>

		<category><![CDATA[debugger]]></category>

		<category><![CDATA[packet sniffer]]></category>

		<guid isPermaLink="false">http://www.webanalyticsnow.com/?p=71</guid>
		<description><![CDATA[One of the best ways to investigate your Omniture implementation is to watch the actual traffic that is being sent by your site.  To assist with this, Omniture provides a JavaScript debugger (search &#8220;Debugger&#8221; in the SiteCatalyst Knowledge Base).  But sometimes, you need to break out the good ol&#8217; packet sniffer to watch [...]]]></description>
			<content:encoded><![CDATA[<p>One of the best ways to investigate your Omniture implementation is to watch the actual traffic that is being sent by your site.  To assist with this, Omniture provides a JavaScript debugger (search &#8220;Debugger&#8221; in the SiteCatalyst Knowledge Base).  But sometimes, you need to break out the good ol&#8217; packet sniffer to watch the <em>actual</em> traffic being sent.</p>
<p>My favorite packet sniffer is <a href="http://www.httpwatch.com">HTTPWatch</a> (<a href="http://www.httpwatch.com">www.httpwatch.com</a>), but <a href="http://www.fiddler2.com">Fiddler</a> (<a href="http://www.fiddler2.com">www.fiddler2.com</a>) is a very good, <em>free</em> alternative.</p>
<p>The trouble with Fiddler is that it will watch all of your requests, making it difficult to isolate the Omniture requests that you&#8217;re looking for.</p>
<p>Fortunately, you can configure a custom filter in Fiddler, which will exclude non-Omniture calls.  This makes is more convenient to use Fiddler to look at server requests sent to Omniture.  Creating the filter is a little bit geeky, but very easy to do.  Here&#8217;s how you do it:</p>
<p>1.	Open Fiddler<br />
2.	From the Main Menu, select Rules > Customize Rules…</p>
<p><a href='http://www.webanalyticsnow.com/wp-content/uploads/2008/05/fiddler1.jpg'><img src="http://www.webanalyticsnow.com/wp-content/uploads/2008/05/fiddler1.jpg" alt="" title="fiddler1" width="297" height="263" class="alignnone size-medium wp-image-72" /></a></p>
<p>3.	Add the following code to the class handlers.  This adds the menu item, and turns it on by default.</p>
<p><code>public static RulesOption("&#038;Omniture Only")<br />
var m_OmnitureOnly: boolean = true;</code></p>
<p><a href='http://www.webanalyticsnow.com/wp-content/uploads/2008/05/fiddler2.jpg'><img src="http://www.webanalyticsnow.com/wp-content/uploads/2008/05/fiddler2-300x170.jpg" alt="" title="fiddler2" width="300" height="170" class="alignnone size-medium wp-image-74" /></a></p>
<p>4.	Add the following code to the static function OnBeforeRequest.  This is the logic for the filter.  It tells Fiddler to only include requests that match the pattern 2o7.net.  You can change the filter value by changing the value of var re.</p>
<p><code>if (m_OmnitureOnly){<br />
        &nbsp;&nbsp;var re = /2o7.net/;<br />
        &nbsp;&nbsp;&nbsp;&nbsp;if (!re.test(oSession.host)){<br />
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oSession["ui-hide"] = &#8220;hiding boring domains&#8221;; // String value not important<br />
        &nbsp;&nbsp;&nbsp;&nbsp;}<br />
}</code></p>
<p><a href='http://www.webanalyticsnow.com/wp-content/uploads/2008/05/fiddler3.jpg'><img src="http://www.webanalyticsnow.com/wp-content/uploads/2008/05/fiddler3-300x72.jpg" alt="" title="fiddler3" width="300" height="72" class="alignnone size-medium wp-image-75" /></a></p>
<p>5.	Fiddler will now show you only Omniture requests, as long as the “Omniture Only” rule is selected in the Rules menu.</p>
<p><a href='http://www.webanalyticsnow.com/wp-content/uploads/2008/05/fiddler4.jpg'><img src="http://www.webanalyticsnow.com/wp-content/uploads/2008/05/fiddler4.jpg" alt="" title="fiddler4" width="291" height="260" class="alignnone size-medium wp-image-73" /></a></p>
<p>Once you have configured Fiddler to show you the Omniture server requests, be sure to check out the Debugger white paper in the SiteCatalyst knowledge base for more information on what the different parameters mean.</p>
<p class="akst_link"><a href="http://www.webanalyticsnow.com/?p=71&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_71" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticsnow.com/2008/05/07/using-fiddler-to-watch-omniture-server-requests/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webanalyticsnow.com/2008/05/07/using-fiddler-to-watch-omniture-server-requests/</feedburner:origLink></item>
		<item>
		<title>The Mighty, Mighty Page View</title>
		<link>http://feeds.feedburner.com/~r/WebAnalyticsWithAaron/~3/159791543/</link>
		<comments>http://www.webanalyticsnow.com/2007/07/18/the-mighty-mighty-page-view/#comments</comments>
		<pubDate>Wed, 18 Jul 2007 19:02:25 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
		
		<category><![CDATA[Web Metrics]]></category>

		<guid isPermaLink="false">http://www.webanalyticsnow.com/2007/07/18/the-mighty-mighty-page-view/</guid>
		<description><![CDATA[The &#8220;page view is dead&#8221; conversation came back up thanks to Nielsen&#8217;s announcement that they would add Time on Site to their measures of audience engagement.  Here is my rather late contribution to the conversation.  Honestly, even though it makes for a great blog title, I wish people would stop saying that the [...]]]></description>
			<content:encoded><![CDATA[<p>The &#8220;page view is dead&#8221; conversation came back up thanks to <a href="http://www.nielsen-netratings.com/press.jsp?section=ne_press_releases&#038;nav=1">Nielsen&#8217;s announcement that they would add Time on Site</a> to their measures of audience engagement.  Here is my rather late contribution to the conversation.  Honestly, even though it makes for a great blog title, I wish people would stop saying that the page view is dead.  It&#8217;s like saying that HTML is obsolete (perhaps it is, but it&#8217;s still all over the <a href="http://en.wikipedia.org/wiki/Interweb">InterWeb</a>)!</p>
<p>While the page view may be replaced as a means of comparing user engagement for competitive analysis (as it rightly ought to), it in no way changes the importance of the page view as a success metric for your own website measurement.</p>
<p>A good analytics implementation will always measure the things that your site’s visitors do that you consider to be “success events”.  Generally, success events are those things that make you money.  If you&#8217;re selling software, it’s purchases and/or trial downloads.  For a media site, it’s the ad impression.  Traditionally, the page view has stood in as a substitute for ad impressions as a success metric for media sites because ad impressions are tracked through different systems, and it has historically been difficult to integrate ad server data into web analytics tools.  However, that is changing, and web analytics vendors now make it easier to upload data from external sources.</p>
<p>A good analytics implementation also measures the user behaviors that lead up to the success events.  Path analysis, in its various forms, is essential to understanding a user’s navigation through your site and the things that lead up to a success event.  For media sites, path analysis is even more important as we try to understand what the most popular types of content are, and how they relate with each other to increase site “stickiness” (increased time on site), and “loyalty” (repeat visits).  The page view is central to path analysis, and even though our definition of what a page view is may change as a result of rich media in its various forms, you’ll still see the page view as central to your path analysis.</p>
<p>On the other hand, as our ability to track site success more specifically increases, the value of the page view as a key performance indicator may diminish.  We’re all trying to measure our site’s return on investment, and as we are more able to track those things that directly make us money (display ad impressions, pre-roll video ads, transfer to affiliate sites, etc.), the page view is no longer as necessary as a proxy for those things.  So instead of “Page Views per Visit” as a key metric, we might find ourselves looking at “ad impressions per visit”, or even better - “revenue per visit” as our key measurements.</p>
<p>But remember that the page view is still a critical component of understanding user navigation and as a way of inferring users’ interests.  So even if we rely less on the page view as a KPI, it’s still one of the central measurements of user behavior overall.</p>
<p>As rich media confuses the “definition” of a page view, it becomes difficult to provide a standard comparative measurement that applies consistently across different websites.  So competitive measurement must begin to rely on those other success measurements, such as time on site, or market share of visitors.  I expect that trend to increase as technical innovation continues to confuse the technical definition of the page view, and Nielsen is certainly leading the way in this trend.  It will be very interesting to see comScore’s reaction to Nielsen’s announcement.</p>
<p>In sum, I still think that the “page view is dead” idea is over-hyped.  Even though I suspect that the page view’s days are numbered for KPIs and competitive analysis, I expect the page view to mature and evolve rather than to go away as an important part of website measurement and optimization.</p>
<p class="akst_link"><a href="http://www.webanalyticsnow.com/?p=36&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_36" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticsnow.com/2007/07/18/the-mighty-mighty-page-view/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webanalyticsnow.com/2007/07/18/the-mighty-mighty-page-view/</feedburner:origLink></item>
		<item>
		<title>If you’re not following the Yahoo! Web Analytics group, you should be</title>
		<link>http://feeds.feedburner.com/~r/WebAnalyticsWithAaron/~3/159791544/</link>
		<comments>http://www.webanalyticsnow.com/2007/07/05/if-youre-not-following-the-yahoo-web-analytics-group-you-should-be/#comments</comments>
		<pubDate>Thu, 05 Jul 2007 19:55:16 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
		
		<category><![CDATA[Industry Info]]></category>

		<guid isPermaLink="false">http://www.webanalyticsnow.com/2007/07/05/if-youre-not-following-the-yahoo-web-analytics-group-you-should-be/</guid>
		<description><![CDATA[The Yahoo! Web Analytics discussion board is a lively and mostly unbiased forum for all kinds of web analytics issues and questions.  It serves well for both web analytics beginners and veterans alike.  If you&#8217;re looking to get up to speed with the industry, or just to keep pace with recent developments, then [...]]]></description>
			<content:encoded><![CDATA[<p>The Yahoo! Web Analytics discussion board is a lively and mostly unbiased forum for all kinds of web analytics issues and questions.  It serves well for both web analytics beginners and veterans alike.  If you&#8217;re looking to get up to speed with the industry, or just to keep pace with recent developments, then this is a must-read for your RSS browser!</p>
<p><a href="http://tech.groups.yahoo.com/group/webanalytics/">http://tech.groups.yahoo.com/group/webanalytics/</a></p>
<p class="akst_link"><a href="http://www.webanalyticsnow.com/?p=70&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_70" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticsnow.com/2007/07/05/if-youre-not-following-the-yahoo-web-analytics-group-you-should-be/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webanalyticsnow.com/2007/07/05/if-youre-not-following-the-yahoo-web-analytics-group-you-should-be/</feedburner:origLink></item>
		<item>
		<title>Why Analysis And Synthesis?</title>
		<link>http://feeds.feedburner.com/~r/WebAnalyticsWithAaron/~3/159791545/</link>
		<comments>http://www.webanalyticsnow.com/2007/06/11/why-analysis-and-synthesis/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 16:00:45 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
		
		<category><![CDATA[About]]></category>

		<category><![CDATA[Analytics Philosophy]]></category>

		<guid isPermaLink="false">http://www.webanalyticsnow.com/2007/06/11/why-analysis-and-synthesis/</guid>
		<description><![CDATA[I wanted to come up with a witty title for my blog.  It doesn&#8217;t compare with Occam&#8217;s Razor, which I had to look up on Wikipedia, but I came up with &#8220;Analysis and Synthesis&#8221;.
In my opinion, good web analytics involves both the process of analysis and the process of synthesis.  According to dictionary.com, [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to come up with a witty title for my blog.  It doesn&#8217;t compare with <a href="http://www.kaushik.net/avinash/">Occam&#8217;s Razor</a>, which I had to look up on <a href="http://en.wikipedia.org/wiki/Occam's_Razor">Wikipedia</a>, but I came up with &#8220;Analysis and Synthesis&#8221;.</p>
<p>In my opinion, good web analytics involves both the process of analysis and the process of synthesis.  According to <a href="http://dictionary.reference.com/browse/analysis">dictionary.com</a>, <a href="http://dictionary.reference.com/search?q=synthesis">analysis</a> can be defined as:</p>
<blockquote><p>1.	the separating of any material or abstract entity into its constituent elements (opposed to synthesis).<br />
2.	this process as a method of studying the nature of something or of determining its essential features and their relations: <em>the grammatical analysis of a sentence</em>.</p></blockquote>
<p><a href="http://dictionary.reference.com/search?q=synthesis">Synthesis</a>, on the other hand, is defined by <a href="http://dictionary.reference.com/search?q=synthesis">dictionary.com</a> as:</p>
<blockquote><p>1.	the combining of the constituent elements of separate material or abstract entities into a single or unified entity (opposed to analysis).<br />
2.	a complex whole formed by combining.</p></blockquote>
<p>Even though analysis and synthesis are considered to be opposites, I find that both are essential to what we do as web analysts.  Analytics tends to bring together the opposite ends of all kinds of spectrums.  Think about it; business users and web programmers, answers leading to questions, quantification and qualification, online and offline.  There is virtually no other line of work that offers such a wide variety of business decisions, practices or personalities.</p>
<p>So here&#8217;s why I think that both analysis and synthesis are essential to web analytics:</p>
<p><strong><em>Analysis</em></strong></p>
<ul>
<li>Finding sources of traffic - where did our users come from?</li>
<li>Splitting a site&#8217;s structure up into a taxonomy, or hierarchy - what parts of our site are the most popular?</li>
<li>Dictionary.com&#8217;s definition 5e is &#8220;a method of proving a proposition by assuming the result and working backward to something that is known to be true.&#8221; - how many times have you been asked to do that?! <img src='http://www.webanalyticsnow.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ul>
<p>Besides, we call it web <em>analytics</em>, of course analysis is involved.  Besides, we deal with numbers a lot.  But synthesis?  Consider:</p>
<p><strong><em>Synthesis</em></strong></p>
<ul>
<li>Correlating user behavior - what are the most popular pages for our English-speaking users from Canada?</li>
<li>Consolidating online with offline data - when we run an Internet campaign, do our offline sales increase?</li>
<li>As I mentioned above, we bring together all kinds of different people, from the geek to the marketing agency hipster (who secretly want to be geeks anyway)</li>
<li>Creating personas out of various user attributes and navigation behavior</li>
<li>Combining numerous user properties and navigation elements to decide which advertisement or article to show to a user on the fly (behavioral targeting).</li>
<li>Putting together various bits of data to create KPIs, then putting all of those KPIs into a single dashboard report for Executives and other decision makers.</li>
<li>Making sense of seemingly disparate information (analysis) in order to drive a successful business decision or strategy (synthesis).</li>
</ul>
<p>So hopefully, I&#8217;ve won you over.  It seems like a lot of thinking around something as simple as a blog title, but I hope to keep blogging for a while, so it was important to come up with something that made sense and communicated something about what this little piece of Internet real estate is all about!</p>
<p>What do you think?  Is this name lame like my puns?  Insightful?  Do I have too much time on my hands, or is it worthwhile to consider these small things every once in a while?  Let me know.</p>
<p class="akst_link"><a href="http://www.webanalyticsnow.com/?p=35&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_35" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticsnow.com/2007/06/11/why-analysis-and-synthesis/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webanalyticsnow.com/2007/06/11/why-analysis-and-synthesis/</feedburner:origLink></item>
	</channel>
</rss>
