View previous topic :: View next topic |
Author |
Message |
Koppuramesh Beginner
Joined: 31 Dec 2002 Posts: 9 Topics: 5
|
Posted: Thu Oct 16, 2003 10:58 am Post subject: Performance testing of CICS pgm |
|
|
Hi,
I need to do the performance testing of a CICS pgm..in which i want to execute a particular paragraph lets say for 1000 times and see if there will be any performance issues..can anyone suggest me the best way to do this? also is there any way to findout the cpu time taken for executing that transaction?
Thank you,
Ramesh |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12382 Topics: 75 Location: San Jose
|
Posted: Thu Oct 16, 2003 11:35 am Post subject: |
|
|
Ramesh,
The simplest way to get abstime before the execuetion of the paragraph begins and once again after the completion of the paragraph. The difference between these two times will be your execuetion time for that paragraph. This is not 100% accurate but will give you a very close estimate.
If you have omegamon at your site then you can check the execuetion times in it.
For the second part of your question please search before posting the question. There is a topic in cics forum which is 4 posts below. Here is the direct link to that topic
http://www.mvsforums.com/helpboards/viewtopic.php?t=926
Hope this helps...
cheers
kolusu |
|
Back to top |
|
 |
Manas Biswal Intermediate

Joined: 29 Nov 2002 Posts: 382 Topics: 27 Location: Chennai, India
|
Posted: Thu Oct 16, 2003 12:20 pm Post subject: |
|
|
I second Kolusu. Omegamon is the tool for you. I don't know its exact cost, but it is a fantastic tool for these purposes.
Regards,
Manas |
|
Back to top |
|
 |
bauer Intermediate
Joined: 10 Oct 2003 Posts: 317 Topics: 50 Location: Germany
|
Posted: Fri Oct 17, 2003 1:37 am Post subject: |
|
|
Hi Ramseh,
a better solution is, you use the assembler macro TIMEUSED; you will get the CPU time amount for the complete cics region (all transactions).
See topic "CPU time taken to process a CICS transaction" in this forum; if source code is required for calling this assembler macro from high level programming language, pls. let me know.
regards,
bauer |
|
Back to top |
|
 |
|
|