
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi,
In TruClient, the wasted time is reported upon transaction end. You can get it from the output of end transaction.
If you need to get the value, a workaround is:
lr_start_transaction("Trans1");
lr_start_transaction("Transaction Foo");
.... (your script)
lr_end_transaction("Transaction Foo",0);
lr_get_transaction_wasted_time("Trans1")
lr_end_transaction("Trans1",0);
Transaction Foo is used to force LR to calculate the wasted time for Trans1

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi,
In TruClient, the wasted time is reported upon transaction end. You can get it from the output of end transaction.
If you need to get the value, a workaround is:
lr_start_transaction("Trans1");
lr_start_transaction("Transaction Foo");
.... (your script)
lr_end_transaction("Transaction Foo",0);
lr_get_transaction_wasted_time("Trans1")
lr_end_transaction("Trans1",0);
Transaction Foo is used to force LR to calculate the wasted time for Trans1

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi Fei,
Thanks, this solution works and now I am able to get the transaction wasted time.