Hi
We want to save some results to the database but we don`t know how to get the average response in the after() method simulation class. We tried to read through the documentation but couldn’t find it.
public class SomeSimulation extends Simulation {
public SomeSimulation() {
setUp(scenario.injectOpen(atOnceUsers(atOnceUsers))).protocols(protocol);
}
@Override
public void after() {
**// get stats or average response for specified endpoint**
}
}