1847858 Members
2051 Online
104021 Solutions
New Discussion

performance testing

 
SOLVED
Go to solution
JOHN TURNER_2
Frequent Advisor

performance testing

Does anyone know if there are any free applications out there that i can download, to check the performance of the system, ie memory, cpu, load testing, Glance doesnt give me enough information

john
GUI's are for wimps!
8 REPLIES 8
Arunvijai_4
Honored Contributor
Solution

Re: performance testing

Check out OpenSTA, http://www.opensta.org/
I am not sure it can give you memory and cpu usage, but it for used for Stress and load testing.

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
Muthukumar_5
Honored Contributor

Re: performance testing

Use vmstat for memory, cpu load informations easily. A tool called vsar there also. It is useful.

hth.
Easy to suggest when don't know about the problem!
VEL_1
Valued Contributor

Re: performance testing

Raj D.
Honored Contributor

Re: performance testing

John,

What about ,

# iostat 5 5
# vmstat 5 5
# ps -el | sort -r -k10 | more
# sar -u -M 5
# top
# netstat
# lsof


Also attached one script that can capture cpu and Physical Memory usuage over a period..

Enjoy,
Cheers,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
Raj D.
Honored Contributor

Re: performance testing

John,

Also you can download the sarchek utility for measuring performance , with sar data ..

Here it is :

www.sarcheck.com

Here are the books for performation related informations,

http://www.sarcheck.com/books.htm


Cheers,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
Hakan Aribas
Valued Contributor

Re: performance testing

Our system programmers are using OpenSTA for heavy load tests. Our web servers are IIS 6, application servers are Weblogic on HP-UX 11v2.

"The current toolset has the capability of performing scripted HTTP and HTTPS heavy load tests with performance measurements from Win32 platforms."
Geoff Wild
Honored Contributor

Re: performance testing

sarcheck isn't free....

If you have glance, then you should have measurware.

From root's cron:

# performance
55 23 * * 1-5 /opt/perf/bin/extract -xp -r /home/gwild/zgbltemplate -g -b today 7:00 -e today 18:00 -f stdout | /bin/mailx -s 'myserver performance report' gwild@mydomain.com >/dev/null 2>&1



# cat /home/gwild/zgbltemplate
REPORT "MWA Export on !SYSTEM_ID"
FORMAT ASCII
HEADINGS ON
SEPARATOR="|"
SUMMARY=60
MISSING=0
DATA TYPE GLOBAL
YEAR
DATE
TIME
GBL_CPU_TOTAL_UTIL
GBL_MEM_UTIL
GBL_SWAP_SPACE_UTIL
GBL_MEM_CACHE_HIT_PCT
GBL_DISK_UTIL_PEAK
GBL_FS_SPACE_UTIL_PEAK
GBL_MEM_PAGEOUT_RATE
GBL_MEM_SWAPOUT_RATE
GBL_MEM_QUEUE


Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.
Ted Buis
Honored Contributor

Re: performance testing

You will only have MeasureWare (OV Perf agent) with Glance if you ordered it separately, or ordered GlancePlus Pak, or have the Enterprise Operating Environment, or have the Mission Critical Operating Environment. GlancePlus for Motif has almost 1000 metrics(Measueware has 5 min averages for up to 300), what do you need? Remember that sar, iostat, vmstat are all available. If you are looking to analyze the application performance, then tusc, and calipher (on Itanium) are available. Check the programmers tools, or the ones for JAVA if you are using that as your application.
Mom 6