Sample repository with Gatling scenarios.
./gradlew fatJar
export LIMIT=<Number of requests needs to invoke>
export DURATION_IN_SECONDS=<How long performance tests should run>
java -jar build/libs/gatling-example-1.0-SNAPSHOT-all.jar # to run all simulations sequentially
java -jar build/libs/gatling-example-1.0-SNAPSHOT-all.jar <simulation name(s)> # to run specific simulation(s)
export LIMIT=5
export DURATION_IN_SECONDS=5
java -jar build/libs/gatling-example-1.0-SNAPSHOT-all.jar
export LIMIT=5
export DURATION_IN_SECONDS=5
java -jar build/libs/gatling-example-1.0-SNAPSHOT-all.jar GetPhotosSimulation
export LIMIT=5
export DURATION_IN_SECONDS=5
java -jar build/libs/gatling-example-1.0-SNAPSHOT-all.jar GetPhotosSimulation GetTodosSimulation