Skip to content

robsonbittencourt/gatling-scaffold

Repository files navigation

Gatling Scaffold

Scaffold for load test project using Gatling

Motivation

Gatling is a amazing tool for load test as code.

The goal of this project is to provide a scaffold for building a load test suite using Gatling. Feel free to modify this project according to your needs. If you create something that might be useful to others, please submit a Pull Request.

grafana-dashboard

This project uses Kotlin to write the tests. It is possible to adapt it to use Java without much effort. Here's a project that uses Java.

Running example test

This project provides two main features for load testing developer. Visualization of data and execution of simulations.

Visualization of data

git clone git@github.com:robsonbittencourt/gatling-scaffold.git
cd gatling-scaffold
docker-compose up 

The docker-compose of this project will build containers with InfluxDB and Grafana that will allow us to visualize the simulation data during its execution.

After the build and creation of the containers access http://localhost:3000. There is already a dashboard called Gatling Report.

Execution

docker run --rm --net="host"\
  -v "$PWD":/gatling-scaffold \
  -v "$PWD"/.gradle:/home/gradle/.gradle \
  -v "$PWD"/build/reports/gatling:/build/reports/gatling \
  -w /gatling-scaffold \
  gradle:7.3.1-jdk17 gradle gatlingRun

This command starts the sample simulation. Follow de execution in your Grafana (http://localhost:3000). After the run you can also view the Gatling report that displays more details. It is generated in gatling-scaffold/build/reports/gatling

report

Creating new simulations

You can rename this project and use it to create your own simulations. These should be placed in the src/gatling/kotlin/simulations.

If you don't know how Gatling works I recommend these links:

To execute your new simulation run the Docker command previously shown passing the simulation full qualified class name with the Gradle Task.

docker run --rm --net="host"\
  -v "$PWD":/gatling-scaffold \
  -v "$PWD"/.gradle:/home/gradle/.gradle \
  -v "$PWD"/build/reports/gatling:/build/reports/gatling \
  -w /gatling-scaffold \
  gradle:7.3.1-jdk17 gradle gatlingRun-simulations.AnotherSimulation

When simulation is not specified, all are run.

Acknowledgments

This project used as a foundation open source projects and resources that other people have created. This shows when it is important to share our creations whenever possible because when we do this we have the chance to help several people.

About

Base for load test project using Gatling

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published