I have run a load test with 200 users and using APDEX reporting that jmeter provides. So in this final report, I notice my total transactions count is not matching with the KO column. Below is a snapshot format:
Label #Samples KO
Transaction9 2383 0
Transaction10 2383 0
Transaction11 2383 0
Transaction12 2383 27
Transaction13. 2383 0
Note:
In transaction12, I have an assertion JSR223 Assertion which I am setting as false when a sample with this transaction fails using AssertionResult.setFailure(true). So my expectation is the report should be as follows:
Label #Samples KO
Transaction9 2383 0
Transaction10 2383 0
Transaction11 2383 0
Transaction12 2383 27
Transaction13. 2356 0
I followed jmeter documentation to generate this type of report. Let me know some of your thoughts/experiences.