Forum Discussion
AlexeyKolosov
Staff
15 years agoHi Celalettin,
When I execute test with 60 Vuser.Result seems good.But when I increase Vusers to 70-80 I get in some Vusers HTTP 500 internal server error.
The body of requests 500 (Internal Server Error) responses usually contains some information on the error which occured on the server's side. I recommend that you show this error to the application's developers. The body can be retrieved via the HTTPRequest.ResponseBody property in the OnLoadTestingResponse event handler.
I couldn't figure with onloadeventhandler.(I'm not able with write script.)
Could you please describe the problem you face in detail?
Help says "However, it is not recommended to use event handlers for tasks involving multiple virtual users. "
Event handlers should be used for test debug purposes only, because they decrease the resulting web server's load significantly.
I have another question.I can see request execution summary for connection.But I want to see request execution summary for page.
Currently, test results can only be grouped by connections. You will need to evaluate the needed requests' time manually.
Sum[requestCount]/Sum[Request Execution Summary(s)] but I'm not sure this is true value?
It should be Sum[Request Execution Summary(s)]/Sum[requestCount], actually. However, since you need to deal with specific requests only, you will need to use Sum[(Request Time + Response Time)]/Sum[requestCount], where Request Time + Response Time is the sum of the corresponding values for each request.