<?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>PerformanceEngineer.com &#187; Tips &amp; Tricks</title>
	<atom:link href="http://www.performanceengineer.com/blog/category/tips-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.performanceengineer.com/blog</link>
	<description>Software Performance Engineering &#38; Testing</description>
	<lastBuildDate>Sat, 23 Jan 2010 02:02:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Extract Transaction Data From LoadRunner Analysis</title>
		<link>http://www.performanceengineer.com/blog/extract-transaction-data-from-loadrunner-analysis/</link>
		<comments>http://www.performanceengineer.com/blog/extract-transaction-data-from-loadrunner-analysis/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 19:38:27 +0000</pubDate>
		<dc:creator>charlie</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[loadrunner]]></category>

		<guid isPermaLink="false">http://www.performanceengineer.com/blog/?p=127</guid>
		<description><![CDATA[I had a need to extract transaction response time data from a bunch of LoadRunner Analysis files, and I really didn&#8217;t want to do endless cut and paste operations from within the LoadRunner Analysis tool.  I created this Python script to extract transaction response time data from the LoadRunner Analysis mdb file and output [...]]]></description>
		<wfw:commentRss>http://www.performanceengineer.com/blog/extract-transaction-data-from-loadrunner-analysis/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Customize size of images in LoadRunner HTML reports</title>
		<link>http://www.performanceengineer.com/blog/customize-size-of-images-in-loadrunner-html-reports/</link>
		<comments>http://www.performanceengineer.com/blog/customize-size-of-images-in-loadrunner-html-reports/#comments</comments>
		<pubDate>Fri, 30 May 2008 01:57:33 +0000</pubDate>
		<dc:creator>charlie</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.performanceengineer.com/blog/?p=119</guid>
		<description><![CDATA[Quick tip: With prevalence of larger monitors these days, it is nice to have charts and graphs that take advantage of the extra space. If you want to customize the size of the charts in the LoadRunner HTML reports, change these settings in C:\Program Files\Mercury\LoadRunner\bin\dat\GeneralSettings.txt:

[HTML report]
ChartWidth=1024
ChartHeight=576

]]></description>
		<wfw:commentRss>http://www.performanceengineer.com/blog/customize-size-of-images-in-loadrunner-html-reports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding dates to vmstat logs</title>
		<link>http://www.performanceengineer.com/blog/adding-dates-to-vmstat-logs/</link>
		<comments>http://www.performanceengineer.com/blog/adding-dates-to-vmstat-logs/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 15:07:52 +0000</pubDate>
		<dc:creator>charlie</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[One of the problems I have with vmstat is that it doesn't have the option to output timestamps (the way iostat does).

As a result, if you have vmstat logs and you don't know exactly when it was run or at what interval it was collecting data, then it makes the data less meaningful or makes it a hassle to track down the information.

It is easy enough to add the date, using a simple shell script.  Create a file, add_date.sh, containing the following:
<pre>
#!/bin/bash

while read data; do
        echo `date '+%m/%d/%Y %H:%M:%S'` $data
done
</pre>

]]></description>
		<wfw:commentRss>http://www.performanceengineer.com/blog/adding-dates-to-vmstat-logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Memory Leaks</title>
		<link>http://www.performanceengineer.com/blog/java-memory-leaks/</link>
		<comments>http://www.performanceengineer.com/blog/java-memory-leaks/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 03:20:53 +0000</pubDate>
		<dc:creator>charlie</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[java memory]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Finding (and fixing) memory leaks in java can sometimes be a tricky process.  I recently had to do some analysis on a leaking application and hit a snag.  

My game plan was to do the following:
<ul>
<li>Capture heap dumps with <a href="http://java.sun.com/j2se/1.5.0/docs/tooldocs/share/jmap.html" onclick="pageTracker._trackPageview('/outgoing/java.sun.com/j2se/1.5.0/docs/tooldocs/share/jmap.html?referer=');">jmap</a></li>
<li>Analyze dump with <a href="http://java.sun.com/javase/6/docs/technotes/tools/share/jhat.html" onclick="pageTracker._trackPageview('/outgoing/java.sun.com/javase/6/docs/technotes/tools/share/jhat.html?referer=');">jhat</a></li>
</ul>

Along the way, I ran into a problem with jmap and discovered a couple new tools.
]]></description>
		<wfw:commentRss>http://www.performanceengineer.com/blog/java-memory-leaks/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Regular Expressions in LoadRunner</title>
		<link>http://www.performanceengineer.com/blog/regular-expressions-in-loadrunner/</link>
		<comments>http://www.performanceengineer.com/blog/regular-expressions-in-loadrunner/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 03:24:03 +0000</pubDate>
		<dc:creator>charlie</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[loadrunner]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<a href="http://motevich.blogspot.com/" onclick="pageTracker._trackPageview('/outgoing/motevich.blogspot.com/?referer=');">Dmitry Motevich</a> posted a <a href="http://motevich.blogspot.com/2008/04/loadrunner-regular-expressions.html" onclick="pageTracker._trackPageview('/outgoing/motevich.blogspot.com/2008/04/loadrunner-regular-expressions.html?referer=');">challenge</a> for getting regular expressions working in LoadRunner.  Regular expressions in C isn't pretty, but here it is:
]]></description>
		<wfw:commentRss>http://www.performanceengineer.com/blog/regular-expressions-in-loadrunner/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Edit LoadRunner scripts in Eclipse</title>
		<link>http://www.performanceengineer.com/blog/edit-loadrunner-scripts-in-eclipse/</link>
		<comments>http://www.performanceengineer.com/blog/edit-loadrunner-scripts-in-eclipse/#comments</comments>
		<pubDate>Fri, 06 Jul 2007 03:25:10 +0000</pubDate>
		<dc:creator>charlie</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>
LoadRunner Vugen can hardly be described as a true IDE, since it is missing a lot of features you would expect, such as: outline of functions, search for references and declarations, code formatting, etc.
</p>
<p>
It is possible to edit scripts using a real IDE (e.g. Eclipse) with some significant advantages and disadvantages.  Here&#39;s how... 
</p>
]]></description>
		<wfw:commentRss>http://www.performanceengineer.com/blog/edit-loadrunner-scripts-in-eclipse/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LoadRunner: Anatomy of a Script</title>
		<link>http://www.performanceengineer.com/blog/loadrunner-anatomy-of-a-script/</link>
		<comments>http://www.performanceengineer.com/blog/loadrunner-anatomy-of-a-script/#comments</comments>
		<pubDate>Wed, 28 Mar 2007 03:32:46 +0000</pubDate>
		<dc:creator>charlie</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>
When you record and save a LoadRunner script in Vugen, there are a number of files that are created.  Here&#39;s what they are, and what they do and identification of the files you can safely delete..
</p>
]]></description>
		<wfw:commentRss>http://www.performanceengineer.com/blog/loadrunner-anatomy-of-a-script/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>LoadRunner: Creating a custom dll</title>
		<link>http://www.performanceengineer.com/blog/loadrunner-creating-a-custom-dll/</link>
		<comments>http://www.performanceengineer.com/blog/loadrunner-creating-a-custom-dll/#comments</comments>
		<pubDate>Mon, 19 Mar 2007 01:30:48 +0000</pubDate>
		<dc:creator>charlie</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>
Using LoadRunner&#39;s lr_load_dll() function, it is possible to roll your own dll&#39;s and use custom functions in your LoadRunner scripts.  Here&#39;s how.
</p>
]]></description>
		<wfw:commentRss>http://www.performanceengineer.com/blog/loadrunner-creating-a-custom-dll/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
