I am trying to check if a particular HTTP request's response time is over 30 seconds, and if it is, then mark it as failed and stop the thread. Sometimes I can see response times close to 80 seconds, an no browser is waiting that long for a response from the server.
I found the following three ways to set a timeout value in JMeter, however this confuses me, because there is multiple options and I don't know which one to use, or if there is any difference at all between them.
So here are the options I found that are related to response timeout:
- Setting Response timeout value in the sampler
- Add a Duration assertion
3. Setting timeout in jmeter.properties configuration file. Options I found here:
- os_sampler.poll_for_timeout=x
- http.socket.timeout=x
- httpclient.timeout=x
So, the problem is that I don't know where to set the response timeout from the listed options. Is there any difference at all between these options? So what I would like to see as a result: If a particular HTTP request takes more than 30 seconds to get a response from the server, stop waiting for a response and mark it as a failed request.