<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Performance Testers Diary</title>
	<atom:link href="http://performancetestersdiary.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://performancetestersdiary.wordpress.com</link>
	<description>Just day to day stuff....</description>
	<lastBuildDate>Fri, 27 Jan 2012 13:26:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='performancetestersdiary.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Performance Testers Diary</title>
		<link>http://performancetestersdiary.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://performancetestersdiary.wordpress.com/osd.xml" title="Performance Testers Diary" />
	<atom:link rel='hub' href='http://performancetestersdiary.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Calculating Transaction Concurrency from a DB table</title>
		<link>http://performancetestersdiary.wordpress.com/2012/01/27/calculating-transaction-concurrency-from-a-db-table/</link>
		<comments>http://performancetestersdiary.wordpress.com/2012/01/27/calculating-transaction-concurrency-from-a-db-table/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 13:26:08 +0000</pubDate>
		<dc:creator>loadtestguy</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Performance Engineering]]></category>

		<guid isPermaLink="false">http://performancetestersdiary.wordpress.com/?p=192</guid>
		<description><![CDATA[A customer I was doing some performance testing for wanted to know how many particular transactions where being processed at any one time. Within their DB they capture the start time and end time of the transaction. So, I thought &#8230; <a href="http://performancetestersdiary.wordpress.com/2012/01/27/calculating-transaction-concurrency-from-a-db-table/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=192&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A customer I was doing some performance testing for wanted to know how many particular transactions where being processed at any one time. Within their DB they capture the start time and end time of the transaction. So, I thought I could give them an indication of concurrency if I could construct a SQL query to extract and process the data.</p>
<p>Here is a a example that I have constructed in a simple MySQL DB (rather than use their data). For this purpose a table called log containing start and end time.</p>
<p>.<a href="http://performancetestersdiary.files.wordpress.com/2012/01/basedata.png"><img class="aligncenter size-full wp-image-193" title="Base Performance Data" src="http://performancetestersdiary.files.wordpress.com/2012/01/basedata.png?w=520" alt=""   /></a></p>
<p>Here is the code I wrote. Any optimisation to the SQL welcome. (I am but a performance tester interested in the data)</p>
<p><code><br />
SELECT tL.StartTime, (select count(1) from test.Log where StartTime = tL.StartTime) FROM test.Log tL where StartTime &gt; 0  group by StartTime order by 1</code></p>
<p>Here is the output from running the query. It should be noted that it presents the concurrency at the start time of a new transaction.</p>
<p><a href="http://performancetestersdiary.files.wordpress.com/2012/01/concurrency-results.png"><img class="aligncenter size-full wp-image-194" title="Results of Transaction Concurrency SQL" src="http://performancetestersdiary.files.wordpress.com/2012/01/concurrency-results.png?w=520&#038;h=298" alt="" width="520" height="298" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/performancetestersdiary.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/performancetestersdiary.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/performancetestersdiary.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/performancetestersdiary.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/performancetestersdiary.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/performancetestersdiary.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/performancetestersdiary.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/performancetestersdiary.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/performancetestersdiary.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/performancetestersdiary.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/performancetestersdiary.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/performancetestersdiary.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/performancetestersdiary.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/performancetestersdiary.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=192&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://performancetestersdiary.wordpress.com/2012/01/27/calculating-transaction-concurrency-from-a-db-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2cc1c8f93b47c101474f0ddcf2613626?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">loadtestguy</media:title>
		</media:content>

		<media:content url="http://performancetestersdiary.files.wordpress.com/2012/01/basedata.png" medium="image">
			<media:title type="html">Base Performance Data</media:title>
		</media:content>

		<media:content url="http://performancetestersdiary.files.wordpress.com/2012/01/concurrency-results.png" medium="image">
			<media:title type="html">Results of Transaction Concurrency SQL</media:title>
		</media:content>
	</item>
		<item>
		<title>Timing JavaScript execution with Fiddler</title>
		<link>http://performancetestersdiary.wordpress.com/2012/01/24/timing-javascript-execution-with-fiddler/</link>
		<comments>http://performancetestersdiary.wordpress.com/2012/01/24/timing-javascript-execution-with-fiddler/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 13:58:40 +0000</pubDate>
		<dc:creator>loadtestguy</dc:creator>
				<category><![CDATA[Performance Engineering]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://performancetestersdiary.wordpress.com/?p=188</guid>
		<description><![CDATA[I have been doing some performance debug work with fiddler recently and I wanted to add some timers to the java script which I am debugging via using an auto responder. For the JavaScript I am interested in I added &#8230; <a href="http://performancetestersdiary.wordpress.com/2012/01/24/timing-javascript-execution-with-fiddler/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=188&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been doing some performance debug work with fiddler recently and I wanted to add some timers to the java script which I am debugging via using an auto responder. </p>
<p>For the JavaScript I am interested in I added the function below at the top of the script. </p>
<p>function now()<br />
        {<br />
        var d = new Date();<br />
        return (d.getTime());<br />
        } </p>
<p>At the beginning of the function I want to time I added </p>
<p>var time  = now(); </p>
<p>At the end of the function I added </p>
<p>alert(&#8220;Time to execute = &#8221; + (now()-time)+&#8221;);</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/performancetestersdiary.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/performancetestersdiary.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/performancetestersdiary.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/performancetestersdiary.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/performancetestersdiary.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/performancetestersdiary.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/performancetestersdiary.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/performancetestersdiary.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/performancetestersdiary.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/performancetestersdiary.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/performancetestersdiary.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/performancetestersdiary.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/performancetestersdiary.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/performancetestersdiary.wordpress.com/188/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=188&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://performancetestersdiary.wordpress.com/2012/01/24/timing-javascript-execution-with-fiddler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2cc1c8f93b47c101474f0ddcf2613626?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">loadtestguy</media:title>
		</media:content>
	</item>
		<item>
		<title>Expanding LoadRunner functions</title>
		<link>http://performancetestersdiary.wordpress.com/2012/01/16/expanding-loadrunner-functions/</link>
		<comments>http://performancetestersdiary.wordpress.com/2012/01/16/expanding-loadrunner-functions/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 22:33:42 +0000</pubDate>
		<dc:creator>loadtestguy</dc:creator>
				<category><![CDATA[LoadRunner]]></category>
		<category><![CDATA[Load runner]]></category>

		<guid isPermaLink="false">https://performancetestersdiary.wordpress.com/?p=178</guid>
		<description><![CDATA[I quickly wanted to get some lr_status message outputted to the console for every LoadRunner transaction in a script, I basically wanted to insert a status message every time the lr_start_transaction was called to output the transaction name to the &#8230; <a href="http://performancetestersdiary.wordpress.com/2012/01/16/expanding-loadrunner-functions/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=178&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I quickly wanted to get some lr_status message outputted to the console for every LoadRunner transaction in a script, I basically wanted to insert a status message every time the lr_start_transaction was called to output the transaction name to the console. however, it was a large script and I didn&#8217;t want to make any code changes to the load runner script. So I wanted to expand the existing function. The code below was added into the vinit section.</p>
<p><code>void my_start_transaction (char *name)<br />
  {<br />
   lr_vuser_status_message("Starting Transaction %s",name);<br />
   lr_start_transaction(name);<br />
   return ;<br />
  };<br />
vuser_init()<br />
{</p>
<p> #define lr_start_transaction(x) my_start_transaction(x)</p>
<p> return 0;<br />
}</code></p>
<div id="attachment_180" class="wp-caption aligncenter" style="width: 530px"><a href="http://performancetestersdiary.files.wordpress.com/2012/01/override-loadrunner-function.png"><img class="size-full wp-image-180" title="override loadrunner function" src="http://performancetestersdiary.files.wordpress.com/2012/01/override-loadrunner-function.png?w=520&#038;h=195" alt="" width="520" height="195" /></a><p class="wp-caption-text">LoadRunner Function Override</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/performancetestersdiary.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/performancetestersdiary.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/performancetestersdiary.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/performancetestersdiary.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/performancetestersdiary.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/performancetestersdiary.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/performancetestersdiary.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/performancetestersdiary.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/performancetestersdiary.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/performancetestersdiary.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/performancetestersdiary.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/performancetestersdiary.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/performancetestersdiary.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/performancetestersdiary.wordpress.com/178/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=178&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://performancetestersdiary.wordpress.com/2012/01/16/expanding-loadrunner-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2cc1c8f93b47c101474f0ddcf2613626?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">loadtestguy</media:title>
		</media:content>

		<media:content url="http://performancetestersdiary.files.wordpress.com/2012/01/override-loadrunner-function.png" medium="image">
			<media:title type="html">override loadrunner function</media:title>
		</media:content>
	</item>
		<item>
		<title>Ticket Website Performance Crash</title>
		<link>http://performancetestersdiary.wordpress.com/2012/01/13/ticket-website-crash/</link>
		<comments>http://performancetestersdiary.wordpress.com/2012/01/13/ticket-website-crash/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 13:27:40 +0000</pubDate>
		<dc:creator>loadtestguy</dc:creator>
				<category><![CDATA[performance failures]]></category>
		<category><![CDATA[Performance Failure]]></category>

		<guid isPermaLink="false">https://performancetestersdiary.wordpress.com/?p=172</guid>
		<description><![CDATA[Another example of a website that may not have been properly performance tested. Ticket Crash<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=172&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Another example of a website that may not have been properly performance tested.</p>
<p><a href="http://www.bbc.co.uk/news/uk-16536027">Ticket Crash</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/performancetestersdiary.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/performancetestersdiary.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/performancetestersdiary.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/performancetestersdiary.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/performancetestersdiary.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/performancetestersdiary.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/performancetestersdiary.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/performancetestersdiary.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/performancetestersdiary.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/performancetestersdiary.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/performancetestersdiary.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/performancetestersdiary.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/performancetestersdiary.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/performancetestersdiary.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=172&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://performancetestersdiary.wordpress.com/2012/01/13/ticket-website-crash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2cc1c8f93b47c101474f0ddcf2613626?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">loadtestguy</media:title>
		</media:content>
	</item>
		<item>
		<title>LoadRunner Spill file too large</title>
		<link>http://performancetestersdiary.wordpress.com/2012/01/13/loadrunner-spill-file-too-large/</link>
		<comments>http://performancetestersdiary.wordpress.com/2012/01/13/loadrunner-spill-file-too-large/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 13:18:04 +0000</pubDate>
		<dc:creator>loadtestguy</dc:creator>
				<category><![CDATA[LoadRunner]]></category>

		<guid isPermaLink="false">https://performancetestersdiary.wordpress.com/?p=170</guid>
		<description><![CDATA[Was playing back in loadrunner Vugen multiple iterations of a C code script making calls to a legacy application. First iteration worked fine but then load runner gave me the error message &#8220;Spill file too large.&#8221; I am not sure &#8230; <a href="http://performancetestersdiary.wordpress.com/2012/01/13/loadrunner-spill-file-too-large/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=170&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Was playing back in loadrunner Vugen multiple iterations of a C code script making calls to a legacy application. First iteration worked fine but then load runner gave me the error message &#8220;Spill file too large.&#8221; I am not sure what this is but I noticed that if I turned off animation not only did this speed up the script execution but the error message disappeared.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/performancetestersdiary.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/performancetestersdiary.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/performancetestersdiary.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/performancetestersdiary.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/performancetestersdiary.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/performancetestersdiary.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/performancetestersdiary.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/performancetestersdiary.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/performancetestersdiary.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/performancetestersdiary.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/performancetestersdiary.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/performancetestersdiary.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/performancetestersdiary.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/performancetestersdiary.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=170&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://performancetestersdiary.wordpress.com/2012/01/13/loadrunner-spill-file-too-large/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2cc1c8f93b47c101474f0ddcf2613626?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">loadtestguy</media:title>
		</media:content>
	</item>
		<item>
		<title>LoadRunner not capturing perfmon stats</title>
		<link>http://performancetestersdiary.wordpress.com/2012/01/09/loadrunner-not-capturing-perfmon-stats/</link>
		<comments>http://performancetestersdiary.wordpress.com/2012/01/09/loadrunner-not-capturing-perfmon-stats/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 15:30:24 +0000</pubDate>
		<dc:creator>loadtestguy</dc:creator>
				<category><![CDATA[LoadRunner]]></category>

		<guid isPermaLink="false">https://performancetestersdiary.wordpress.com/?p=167</guid>
		<description><![CDATA[Just been doing some load testing over the weekend on the production boxes. For weeks I have been collecting resource usage CPU etc from the windows server in the UAT environment. So, I thought let&#8217;s just change the machine name &#8230; <a href="http://performancetestersdiary.wordpress.com/2012/01/09/loadrunner-not-capturing-perfmon-stats/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=167&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just been doing some load testing over the weekend on the production boxes. For weeks I have been collecting resource usage CPU etc from the windows server in the UAT environment. So, I thought let&#8217;s just change the machine name and collect all the same stats. Alas, it didn&#8217;t work as I did not have the correct privileges. On the UAT box I could login and run perfmon manually but on the production box I had not been given access. </p>
<p>Moral of the story. Remember to get this set up before you are the only person in the office on a Sunday.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/performancetestersdiary.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/performancetestersdiary.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/performancetestersdiary.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/performancetestersdiary.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/performancetestersdiary.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/performancetestersdiary.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/performancetestersdiary.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/performancetestersdiary.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/performancetestersdiary.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/performancetestersdiary.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/performancetestersdiary.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/performancetestersdiary.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/performancetestersdiary.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/performancetestersdiary.wordpress.com/167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=167&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://performancetestersdiary.wordpress.com/2012/01/09/loadrunner-not-capturing-perfmon-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2cc1c8f93b47c101474f0ddcf2613626?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">loadtestguy</media:title>
		</media:content>
	</item>
		<item>
		<title>Quick Analysis of an Oracle AWR report</title>
		<link>http://performancetestersdiary.wordpress.com/2012/01/06/quick-analysis-of-an-oracle-awr-report/</link>
		<comments>http://performancetestersdiary.wordpress.com/2012/01/06/quick-analysis-of-an-oracle-awr-report/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 10:27:25 +0000</pubDate>
		<dc:creator>loadtestguy</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Performance Engineering]]></category>

		<guid isPermaLink="false">https://performancetestersdiary.wordpress.com/?p=157</guid>
		<description><![CDATA[Oracle Database 11g Performance Tuning Recipes: A Problem-Solution Approach by Sam R. Alapati, Darl Kuhn and Bill Padfield Step 1: Check DB Time If DB time is significantly higher than the elapsed time then things are waiting. Elapsed: 60.10 (mins) &#8230; <a href="http://performancetestersdiary.wordpress.com/2012/01/06/quick-analysis-of-an-oracle-awr-report/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=157&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Oracle Database 11g Performance Tuning Recipes: A Problem-Solution Approach<br />
by  Sam R. Alapati, Darl Kuhn and Bill Padfield<br />
<strong>Step 1: Check DB Time</strong></p>
<p>If DB time is significantly higher than the elapsed time then things are waiting.</p>
<p>Elapsed:   60.10 (mins)<br />
DB Time:   197.70 (mins)</p>
<p>The example in the book shows DB time 20x the elapsed.</p>
<p><strong>Step 2: Instance Efficiency</strong></p>
<p>Hopefully these will be above 90%</p>
<p>Buffer Nowait %: 100.00<br />
Redo NoWait %: 100.00<br />
Buffer Hit %: 99.88<br />
In-memory Sort %: 99.95<br />
Library Hit %: 98.84<br />
Soft Parse %: 97.81<br />
Execute to Parse %: 83.30<br />
Latch Hit %: 100.00<br />
Non-Parse CPU: 99.89<br />
Parse CPU to Parse Elapsd %: 0.00 %</p>
<p>The last one shows how much time the CPU is parsing SQL statments, so the lower the better.</p>
<p><strong>Step 3: Top 5 Timed Events</strong></p>
<p><a href="http://performancetestersdiary.files.wordpress.com/2012/01/timedevents1.png"><img class="alignleft size-full wp-image-163" title="TimedEvents" src="http://performancetestersdiary.files.wordpress.com/2012/01/timedevents1.png?w=520" alt=""   /></a></p>
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">This tell you where the highest resources are being consumed. In the book the example is the <em>db file sequential read </em>would indicate that there where full table scans being performed.</p>
<p>For my AWR report is looks like most of the resources are used in the remote connections over DBlink. Now I need to find out if this is due to a poor network or just user load.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/performancetestersdiary.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/performancetestersdiary.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/performancetestersdiary.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/performancetestersdiary.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/performancetestersdiary.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/performancetestersdiary.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/performancetestersdiary.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/performancetestersdiary.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/performancetestersdiary.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/performancetestersdiary.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/performancetestersdiary.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/performancetestersdiary.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/performancetestersdiary.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/performancetestersdiary.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=157&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://performancetestersdiary.wordpress.com/2012/01/06/quick-analysis-of-an-oracle-awr-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2cc1c8f93b47c101474f0ddcf2613626?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">loadtestguy</media:title>
		</media:content>

		<media:content url="http://performancetestersdiary.files.wordpress.com/2012/01/timedevents1.png" medium="image">
			<media:title type="html">TimedEvents</media:title>
		</media:content>
	</item>
		<item>
		<title>I/O Test Tool for Oracle DBs</title>
		<link>http://performancetestersdiary.wordpress.com/2011/10/10/io-test-tool-for-oracle-dbs/</link>
		<comments>http://performancetestersdiary.wordpress.com/2011/10/10/io-test-tool-for-oracle-dbs/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 11:13:23 +0000</pubDate>
		<dc:creator>loadtestguy</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Performance Engineering]]></category>

		<guid isPermaLink="false">http://performancetestersdiary.wordpress.com/?p=154</guid>
		<description><![CDATA[Been surfing the web and found a tool called Orion by Oracle that can be used for benchmarking your I/O subsystem and help identify potential problems before installing the DB, http://www.oracle.com/technetwork/topics/index-089595.html &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=154&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Been surfing the web and found a tool called Orion by Oracle that can be used for benchmarking your I/O subsystem and help identify potential problems before installing the DB,</p>
<p><a href="http://www.oracle.com/technetwork/topics/index-089595.html">http://www.oracle.com/technetwork/topics/index-089595.html</a></p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/performancetestersdiary.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/performancetestersdiary.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/performancetestersdiary.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/performancetestersdiary.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/performancetestersdiary.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/performancetestersdiary.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/performancetestersdiary.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/performancetestersdiary.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/performancetestersdiary.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/performancetestersdiary.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/performancetestersdiary.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/performancetestersdiary.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/performancetestersdiary.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/performancetestersdiary.wordpress.com/154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=154&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://performancetestersdiary.wordpress.com/2011/10/10/io-test-tool-for-oracle-dbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2cc1c8f93b47c101474f0ddcf2613626?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">loadtestguy</media:title>
		</media:content>
	</item>
		<item>
		<title>Interesting Presentation on High Performance Trading System</title>
		<link>http://performancetestersdiary.wordpress.com/2011/09/06/interesting-presentation-on-high-performance-trading-system/</link>
		<comments>http://performancetestersdiary.wordpress.com/2011/09/06/interesting-presentation-on-high-performance-trading-system/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 08:00:57 +0000</pubDate>
		<dc:creator>loadtestguy</dc:creator>
				<category><![CDATA[Performance Engineering]]></category>

		<guid isPermaLink="false">http://performancetestersdiary.wordpress.com/?p=148</guid>
		<description><![CDATA[Just came across this presentation. Some very interesting performance engineering concepts, particularly like the parts on Mechanical Sympathy and the fact you need developers to understand the hardware so that they can produce high performance/responsive code. http://www.infoq.com/presentations/LMAX<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=148&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just came across this presentation. Some very interesting performance engineering concepts, particularly like the parts on Mechanical Sympathy and the fact you need developers to understand the hardware so that they can produce high performance/responsive code.</p>
<p><a href="http://www.infoq.com/presentations/LMAX">http://www.infoq.com/presentations/LMAX</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/performancetestersdiary.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/performancetestersdiary.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/performancetestersdiary.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/performancetestersdiary.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/performancetestersdiary.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/performancetestersdiary.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/performancetestersdiary.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/performancetestersdiary.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/performancetestersdiary.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/performancetestersdiary.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/performancetestersdiary.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/performancetestersdiary.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/performancetestersdiary.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/performancetestersdiary.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=148&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://performancetestersdiary.wordpress.com/2011/09/06/interesting-presentation-on-high-performance-trading-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2cc1c8f93b47c101474f0ddcf2613626?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">loadtestguy</media:title>
		</media:content>
	</item>
		<item>
		<title>Script Scanning slow user Performance</title>
		<link>http://performancetestersdiary.wordpress.com/2011/07/27/script-scanning-slow-user-performance/</link>
		<comments>http://performancetestersdiary.wordpress.com/2011/07/27/script-scanning-slow-user-performance/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 10:03:15 +0000</pubDate>
		<dc:creator>loadtestguy</dc:creator>
				<category><![CDATA[Performance Engineering]]></category>
		<category><![CDATA[Performance Testing]]></category>

		<guid isPermaLink="false">https://performancetestersdiary.wordpress.com/2011/07/27/script-scanning-slow-user-performance/</guid>
		<description><![CDATA[This week I have been investigating slow click to screen response times for a browser based app. Using Fiddler on the client site PCs showed that the majority of time was client rendering/JavaScript execution. Great I thought I could debug &#8230; <a href="http://performancetestersdiary.wordpress.com/2011/07/27/script-scanning-slow-user-performance/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=145&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This week I have been investigating slow click to screen response times for a browser based app. Using Fiddler on the client site PCs showed that the majority of time was client rendering/JavaScript execution. Great I thought I could debug this back at base.</p>
<p>However, when I connected my laptop to the test environment response times where much worse. It wasn&#8217;t the test environment as fiddler showed that back end performance was fine. My laptop was a higher spec than the client PC so I started up perfmon and observed high CPU as the main cause. However, it was not the Internet explorer process that was consuming the CPU but the McAfee intrusion protection process. Little known to me this was a recent corporate wide download (ok, I probably got the email about it but hey, I get a lot of emails!)</p>
<p>So. the delay was primarily the anti-virus script scanning the JavaScript. Disabled on the clients PC but not on<br />
my laptop Luckily, there is a registry setting that will disable scanning for a particular URL. With that in place I could get around to debugging the JavaScript with IE 8.</p>
<p>Moral of the story check to see if script scanning is enabled on yours abs the clients PC.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/performancetestersdiary.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/performancetestersdiary.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/performancetestersdiary.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/performancetestersdiary.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/performancetestersdiary.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/performancetestersdiary.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/performancetestersdiary.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/performancetestersdiary.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/performancetestersdiary.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/performancetestersdiary.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/performancetestersdiary.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/performancetestersdiary.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/performancetestersdiary.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/performancetestersdiary.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=performancetestersdiary.wordpress.com&amp;blog=8032486&amp;post=145&amp;subd=performancetestersdiary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://performancetestersdiary.wordpress.com/2011/07/27/script-scanning-slow-user-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2cc1c8f93b47c101474f0ddcf2613626?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">loadtestguy</media:title>
		</media:content>
	</item>
	</channel>
</rss>
