Performance test with Gatling
Introduction: Gatling is an open-source load testing tool written purely in Scala code. The straightforward and expressive DSL that Gatling offers makes it simple to write load testing scripts. It doesn’t contain a GUI (like say JMeter ), although it does ship with a GUI to assist with recording scripts. It can run a huge amount of traffic on a single computer, eliminating the need for complex distributed testing infrastructure. The Gatling code check can be checked into a version control system, and easily used with Continuous Integration tools to run load and performance tests as part of your CI build. Downloading: Download gatling from = https://gatling.io/open-source/ Testing Two types of testing: By using HAR file = which is handled by recorder.sh file By writing scripts = which is handled by gatling.sh file Location for recorder.sh = cd gatling**/bin/ Location for gatling.sh = cd gatling**/bin/ ...