Blog
Categories
- Agile
- Best Practices
- Center of Excellence
- Cloud
- Featured
- Functional Testing and Automation
- Giveaway
- Healthcare IT
- HP
- HP Discover Conference
- HP Software Patches
- Latest News
- LoadRunner
- Methodology
- Mobile
- Northway Navigator Club News
- Operating Systems
- Performance Testing and Automation
- Quality Assurance
- Security
- Service Virtualization
- SiteScope
- Training
- TweakLR
- Uncategorized
- VuGen Code
Archives
- April 2019
- September 2018
- July 2018
- June 2018
- October 2017
- August 2016
- April 2015
- February 2015
- September 2014
- August 2014
- May 2014
- April 2014
- March 2014
- October 2013
- September 2013
- August 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- February 2011
- July 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- September 2007
- August 2007
- July 2007
- October 2006
- April 2006
- March 2005
- October 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- April 2003
-
Capturing Windows Perfmon Metrics
Posted on February 20, 2013 by Admin
This is the first in the series of articles about performance monitoring under load and how to use the LoadRunner Analysis tool effectively. In my experience, about 60% to 70% of new LoadRunner users never consider all the monitoring capabilities within the product. They only focus on the end user experience – or Transaction Timings as we call them. An important part of performance test execution is to monitor the vital metrics of the infrastructure hosting the application while under load. How else will you know why the end user Read Entire Entry
-
Open Multiple Windows System Files With One Click
Posted on July 5, 2012 by Admin
Assumptions:
1. You are on a windows platform.
2. You have Windows Scripting (WSH) enabled.
3. You have no security issues running VBS scripts.The following code will pull up several system files in notepad all in one place. Save this code into a text file and then rename the extension to .vbs for it to become executable. Modify it to take out or add more by changing what is in the array. For example, taking out everything except the hosts file from the array will mean only the hosts file will be opened in notepad:
Set Sh Read Entire Entry -
One Click Creation Of Load Test Project Folders
Posted on June 25, 2012 by Admin
This simple script is something I use to create initial folders for my load testing projects. It save a little bit of time and ensures I always create the same folder structure. You need VBScript (vbs) files to be allowed to execute or it may not work properly for you. Install Windows Scripting Host if you do not already have the ability to do it on your machine. I have tested it on X pand Windows 7 and it seems to run fine. Paste this into a text file and then rename it to a .vbs extension. Then execute it. There should be a prompt Read Entire Entry
-
Save Unique Log Files With a Windows Batch File
Posted on January 4, 2010 by Admin
This may help you if you have to run a batch file and save off file with a unique name every time. I find the easiest thing is to save based on the exact time. For this file, I wanted to gather all of the processes in task manager and save them into a spreadsheet. I did this at the beginning of a load test, and the ending of a load test. I then compared the two files to determine memory utilization of each process. In XP there is a command line executable build in called “tasklist.exe” and it allows you to save your data in csv Read Entire Entry
-
Heap Counters For Windows Perfmon
Posted on March 11, 2009 by Admin
I came across this article today about adding HEAP counters in Perfmon by turning on a registry key:
http://support.microsoft.com/?kbid=290639
The heap performance-monitoring counter is a new feature in Microsoft Windows XP. This feature is included in Microsoft Windows Server 2003, Windows Vista, and Windows Server 2008. Performance Logs and Alerts (Perfmon.exe) can display about 20 heap-related counters. These counters are not enabled by default; you must enable them.
See the article for a complete listing of the counters it ad Read Entire Entry -
Disappearing Perfmon Counters
Posted on March 2, 2009 by Admin
I had a strange issue on my machine today. I opened up Perfmon and there were no counters available to add for my localhost machine, or my machine by name. After some research on the topic I found this web site:
http://www.technologyquestions.com/technology/windows-xp/150094-advanced-no-performance-counters-listed.html
In short, I was missing two files called perfc009.dat and perfh009.dat. I had to restore the two files from the XP install CD and place them into my %Systemroot%\System32\ directory. I launched Perfmon and everythi Read Entire Entry
-