Get Knowledge from Video instead of Content:

PT Basic

To view the blog, please click on related links:

Performance Testing Life Cycle:
Performance Testing Basics:
Result Analysis Basics:
Performance Testing Document Templates:
Related Topic:

14 comments :

  1. In vugen,How to capture one particular transaction response time in truclient protocol..

    ReplyDelete
    Replies
    1. Hi Dheena,

      You can get the transaction response time in the result. Make sure you bind the correct requests in the transaction like Home Page, Login etc.

      Delete
  2. Hi is it possible to get the response time of each request.

    For example 1 Transaction may have 2-3 requests(web_submit/web_url/web_custom_requet)

    ReplyDelete
    Replies
    1. Yes, please wrap those requests in the sub-transaction.

      lr_start_transaction ("1.0")
      .
      .
      .
      lr_start_sub_transaction("1.1")
      .
      .
      lr_end_sub_transaction("1.1", LR_AUTO);
      .
      .
      .
      lr_start_sub_transaction("1.2")
      .
      .
      lr_end_sub_transaction("1.2", LR_AUTO);
      .
      .
      lr_end_transaction("1.0", LR_AUTO);

      Delete
  3. Replies
    1. It is a default argument which is passed in lr_end_transaction function. Apart from LR_AUTO, LR_Pass and LR_Fail arguments are also used which are condition based argument.

      Delete
    2. can u tell me the link to read about this arguments???

      Delete
    3. https://perfmatrix.blogspot.com/2017/03/hp-loadrunner-transaction-handling.html

      Delete
  4. sir,
    can u please elaborate this. "run vuser as thread or process"??
    which one is preferred nd why???

    ReplyDelete
    Replies
    1. Please refer the below link:

      https://perfmatrix.blogspot.com/2017/04/loadrunner-run-vuser-as-a-thread-vs-run-vuser-as-a-process.html

      Delete
  5. sir,
    how to simulate spike test???
    how load distribution done for spike test???

    ReplyDelete
    Replies
    1. Hi Shivani,

      Please refer to the below link:
      https://www.perfmatrix.com/what-is-spike-test/

      Delete