Hello all,
I am using REf framework without queues. Read each row from excel and perform actions on a app.
Is there a way to get time taken per transaction/item without having to put start time and end time and do a subtraction?
Goal is to get each transaction times of each item and do average to get average handle time of a BOT.
I am seeing a parameter- total execution time used in logs by few. Will this give me what I am looking for? Or is it for getting full process cycle (after completing all items in a process)
Thanks for replying. Forgot to mention that it is attended bot which would be launched by specialist from assistant. Also, note that we aren’t using queues.
Even in this case can we see execution time per transaction?
Normally, the robot does this in case of a status change in the set trascation activity. However, since you don’t have a queue structure, you actually turn REF into a big for loop by switching to datarow. That’s why you have to keep the time in it.
Got it. Thanks MY. So without queues only option is to 1. have total time/no. of transactions for average time and 2. put start and end time at the start and end of each transaction to get individual time right?