In JMeter I want to hide the first iteration of my loadtest for caching issues and warmup. For now I have an JSR223 PostProcessor with the next code above each request:
if (vars.getIteration() == 1) {
prev.setIgnore()
}
This works good, but the results in the aggregate report are incorrect. The transaction controllers are showing with empty numbers and the calculations of the 90% are incorrect. How can I only fill an aggregate report the second iteration?
Testplan:
- jp@gc - Ultimate Thread Group |> Transactioncontroller |> Sampler
An setUp thread is not working because the cache is not shared between threads
The syntheis report is now: