Timer

1
0
-1

Hi.
I tried to measure the time it takes to load a form when the user finishes clicking the submit button. Is it possible to do with groovy script?
Since the time is needed to realize the ISO 9126 standard part of the efficiency according to the response time.
Thanks.

1 answer

1
0
-1

Hi,

I don't think you will be able to measure the end to end loading time from a user perspective using Groovy script. Mainly because Groovy script is executed on the server side, so all the time spent on the client side evaluating expressions + the time the different resources won't be counted. Also, before and after any Groovy script is called (from a connector or other part of the process), execution time is spent on the engine.

I would say the best approach is probably to use web monitoring tools to measure the time spent to load a form from a client perspective.

Cheers

Notifications