tags:

views:

189

answers:

2

Hi all,

 I'm using Jmeter to do a load testing for a website. In that case I have faced to a problem that the jmeter does not show the errors rather than the 404 errors. so how can I give the error messages in the jmeter for the errors occur for other cases. Can some one help me. Thanks in advance.

Thilanka.

+1  A: 

By default, JMeter only flags typical HTTP error response codes, like 4XX and 5XX errors.

You should use Response Assertions on your HTTP samplers if you wish to have finer control over what is flagged as an error.

webguydan
Ok. Thanks for your help
Thilanka
If the answer resolved your question, you should consider marking it up. :)
webguydan
A: 

One annoyance with this though seems to be that JMeter always treats a 404 as an error, when can be a valid response for some applications. So even if you make an assertion that a 404 response is OK, it will still show as an error.

JaredQ