Facebook iconA Comprehensive Guide on Performance Testing with JMeter
WhatsApp Icon (SVG)
Mastering Performance Testing with JMeter: A Comprehensive Guide Hero

Apache JMeter is a powerful, open-source tool for load testing and performance measurement. It's widely used in the software industry to simulate heavy loads on applications, servers, and networks, identifying bottlenecks and ensuring they can handle expected traffic. In this beginner's guide, we'll give a JMeter tutorial covering the basics of performance testing using JMeter.

What is JMeter?

Do you want to know what is JMeter in software testing? JMeter is a pure Java desktop application, meaning it runs on any environment that supports Java. It was originally designed for testing web applications but has expanded to other test functions. JMeter is used for loading and performance testing different server types, including:

  • Web - HTTP, HTTPS
  • SOAP / REST web services
  • FTP
  • Databases via JDBC
  • LDAP
  • Message-oriented middleware (MOM) via JMS
  • Mail - SMTP(S), POP3(S) and IMAP(S)
  • Native commands or shell scripts
  • TCP connections

The Role of JMeter in Performance Testing 

Apache JMeter plays a pivotal role in performance testing by providing a powerful and versatile platform for evaluating the performance and scalability of applications. Here’s how you can start performance testing using JMeter:

1. Load Testing

JMeter load testing can simulate multiple users accessing a web application simultaneously, helping to assess how the application performs under heavy loads. It identifies performance bottlenecks and ensures that the application can handle peak traffic without issues.

2. Scalability Testing

By testing the application with an increasing number of users, JMeter helps determine the scalability of the application. This ensures that the application can grow and perform well as the user base expands.

3. Stress Testing

JMeter pushes the application to its limits by simulating extreme conditions, such as high traffic spikes. This helps identify the application's breaking point and ensures it can recover gracefully from failures.

4. Integration with CI/CD

JMeter integrates seamlessly with Continuous Integration/Continuous Deployment (CI/CD) pipelines, enabling automated performance testing. This ensures that performance tests are run consistently with every code change, catching performance regressions early in the development cycle.

5. Protocol Support

JMeter supports a wide range of protocols, including HTTP, HTTPS, FTP, JDBC, and more. This makes it a versatile tool for testing various types of applications, from web services to databases.

6. Real-Time Reporting and Analytics

JMeter provides detailed real-time reports and analytics on various performance metrics, such as response times, throughput, and error rates. This data helps teams make informed decisions about performance improvements.

7. Scripting and Extensibility

With its support for scripting through languages like Groovy and its extensive plugin ecosystem, JMeter allows for highly customizable and extendable test plans, catering to specific testing needs.

8. Performance Metrics Monitoring

JMeter provides a range of performance metrics, such as response times, throughput, error rates, and server resource utilization, allowing testers to monitor and analyze the performance of the application comprehensively.

Why Use Jmeter? 

JMeter is open-source software which is freely available and can be customized to fit your specific testing needs. Many organizations that offer software testing services rely on JMeter to conduct thorough performance and load testing, ensuring applications can handle expected traffic and function correctly under stress.

benefits of JMeter

Setting Up JMeter

To get started with JMeter, you'll need to follow steps:

  • Operating System: JMeter is platform-independent and can run on Windows, macOS, and Linux.
  • Check if Java is already installed:
  1. Open a command prompt (Windows) or terminal (macOS/Linux).
  2. Type java -version and press Enter.
  • If Java is not installed, download and install it from the Oracle JDK website or AdoptOpenJDK.
  • Set up the JAVA_HOME environment variable: Setting up the JAVA_HOME variable is essential for JMeter to locate Java.

For Windows

  1. Right-click on 'This PC' or 'Computer' on your desktop or in File Explorer.
  2. Select 'Properties'.
  3. Click on 'Advanced system settings'.
  4. In the System Properties window, click on the 'Environment Variables...' button.
  5. In the Environment Variables window, click 'New...' under 'System variables'.
  6. Enter JAVA_HOME as the variable name and the path to your JDK installation (e.g., C:\Program Files\Java\jdk-14) as the variable value.
  7. Click 'OK' to save the new variable.

 For macOS/Linux

  1. Open a terminal.
  2. Open your profile file with a text editor (e.g., nano ~/.bash_profile or nano ~/.zshrc for macOS, nano ~/.bashrc for Linux).
  3. Add the following line at the end of the file:sh

export JAVA_HOME=/path/to/your/jdk

Replace /path/to/your/jdk with the actual path to your JDK installation.

Save the file and run source ~/.bash_profile (or the appropriate file for your shell) to apply the changes.

Familiarize yourself with the GUI. The main elements are Test Plan, WorkBench, and Tree View.

Simple Test Plan Structure

  • Test Plan: The test plan serves as the blueprint for executing and organizing tests. It outlines test scenarios, settings, and elements, providing a structured approach to ensure thorough testing coverage and effective management of testing efforts.
  • Thread Group: Manages virtual users (threads) and their behaviour during a test. It defines the number of users, ramp-up period, and test duration.
  • HTTP Request Defaults: Sets default values for HTTP requests within its scope, such as server name and protocol. It reduces redundancy in HTTP request configurations.
  • HTTP Request: Sends an HTTP request to a web server. Includes parameters like method (GET, POST), path, and optional headers or body data.
  • Constant Timer: Adds a constant delay between requests sent by each thread. This helps simulate realistic user behaviour and manage server load.
  • Response Assertion: Checks the response content against expected patterns or values. It validates whether the server's responses meet specified criteria.
  • View Results Tree: Displays the response data for each sample in a tree or table format. It is useful for debugging and analyzing individual request/response details.
  • Aggregate Report: Generates aggregate performance test results, including average response times, throughput, and error rates. This provides insights into overall test performance.

Creating a Basic Test Plan

A Test Plan defines the tests you want to run. Here's a basic example:

  1. Add a Thread Group which defines the number of virtual users and their behaviour. This represents a group of users. Right-click on Test Plan > Add > Thread (Users) > Thread Group.
Adding a thread group in JMeter
  1. Add an HTTP(S) Test Script Recorder. Right-click Test Plan > Add > Non-Test Elements > HTTP(S) Test Script Recorder.
Add an HTTP(S) Test Script Recorder in Jmeter

Add an HTTP(S) Test Script Recorder in Jmeter
  1. Configure the HTTP Request. Enter the Server Name (e.g., www.example.com) and add Port 8888 or 8080 which should be the same in the browser where we are planning to run the test.
  2. Add a Listener. This determines how results are processed and displayed. Right-click Thread Group > Add > Listener > View Results Tree.
Add a Listener in Jmeter

Add a Listener in Jmeter

Setting up a Proxy for Firefox to Run Jmeter Configure Firefox to Use JMeter Proxy

  • Open Firefox.
  • Go to Settings > Network Settings > Settings.
  • Select Manual proxy configuration.
  • Enter localhost for the HTTP Proxy.
  • Enter 8888 (or the port you configured in JMeter) for the Port.
  • Check Also use this proxy server for HTTPS
  • Click OK to save the settings.
Setting up a Proxy for Firefox to Run Jmeter

Configure the JMeter Certificate

To accurately test HTTPS apps, it is essential to configure the JMeter root CA certificate. It makes it possible for JMeter to intercept and decode HTTPS communication, facilitating thorough functional and performance testing of secure endpoints. You won't be able to test secure connections without this setting, which will result in findings that are inconsistent and insufficient.

  • In JMeter, under the HTTP(S) Test Script Recorder panel, find the Start  button and click it.
  • JMeter will prompt you to install its Root CA certificate to capture HTTPS traffic:
  1. Navigate to the ‘bin’ directory of your JMeter installation.
  2. Find the file ‘ApacheJMeterTemporaryRootCA.crt’.

   In Firefox:

  • Go to Settings > Privacy & Security > Certificates > View Certificates.
Configuring the JMeter Certificate

Configuring the JMeter Certificate
  • Click Import and select `ApacheJMeterTemporaryRootCA.crt`.and click on Open
Importing ApacheJMeterTemporaryRootCA.crt in Jmeter
  • Check the Trust this CA to identify websites.
  • Click the OK button in Certificate Manager once the certificate is imported successfully.
Certificate Manager in Jmeter

Running Your First Test

  1. Save your Test Plan. Give it a name and click Save and record the script.*  Select Http(s) Test script recorder* In Global Settings Enter the Port number and HTTPS Domains

* Click on Start button 

* Enter the Transaction name on each action we perform to avoid disturbances

* Perform the same flow on each click as per the requirement and here is an example of a recorded script

  1. Run the test. Click the green Run button or press Ctrl+R.
Run the test in Jmeter
  1. View your results. Expand the Results Tree listener and you'll see the results of your test, including response times and any errors.

Advanced Techniques and Best Practices in JMeter

To optimize your performance and load testing with JMeter, consider implementing the following advanced techniques and best practices:

1. Parameterization

Parameterization allows you to create dynamic test scenarios by replacing static values with variables. This can be achieved using:

  • CSV Data Set Config: Load external CSV files to provide different data sets for each user.
  • User-Defined Variables: Define variables within the JMeter test plan to be reused across various test elements.

2. Assertions and Validations

Incorporate assertions and validations to verify the expected behavior of your system. Key techniques include:

  • Response Assertions: Validate response codes, response messages, and specific text within the response body.
  • Duration Assertions: Ensure that response times do not exceed defined thresholds.
  • Size Assertions: Verify the size of the response to detect any anomalies.

3. Think Time

Introduce think time between requests to emulate real user interactions and pauses. This can be managed using:

  • Constant Timer: Add fixed delays between requests.
  • Gaussian Random Timer: Introduce variability in delay times to better simulate user behavior.

4. Correlation

Correlation handles dynamic values and session IDs that change with each request. Techniques include:

  • Regular Expression Extractor: Extract dynamic values from server responses.
  • CSS/JQuery Extractor: Use CSS selectors to extract values from HTML responses.
  • JSON Extractor: Extract data from JSON responses to be reused in subsequent requests.

5. Distributed Testing

Distributed testing in JMeter uses multiple machines to perform load testing on an application or server, allowing you to simulate a larger number of users more effectively than with a single machine.

 Key practices include:

  • Master-Slave Configuration: 
  • Master: The machine that controls the test and aggregates results.
  • Slaves: The machines that actually generate the load on the target server.

Network Configuration: Ensure proper network configuration to avoid bottlenecks and ensure accurate load distribution.

6. Monitoring and Analysis

Integrate monitoring and analysis tools to gain deeper insights into your system's performance. Effective tools and practices include:

  • Grafana: Use Grafana for visualizing real-time performance metrics from JMeter.
  • ELK Stack (Elasticsearch, Logstash, Kibana): Aggregate and analyze logs for comprehensive performance analysis.
  • APM Tools (e.g., New Relic, Dynatrace): Monitor application performance and detect performance bottlenecks at the application layer.

7. Additional Best Practices

  • Script Reusability: Design modular and reusable scripts to simplify maintenance and updates.
  • Pre-Testing Validation: Validate your test scripts in a controlled environment before executing full-scale tests.
  • Performance Baselines: Establish performance baselines to measure improvements or regressions over time.
  • Result Analysis: Perform a thorough analysis of test results, focusing on key performance indicators (KPIs) like response time, throughput, error rate, and resource utilization.

By incorporating these advanced techniques and best practices, you can enhance the accuracy and reliability of your performance testing with JMeter, ensuring comprehensive and realistic load testing scenarios. 

Key Performance Metrics to Monitor

  • Response Times: Check how quickly your system responds under different loads. Look for spikes or anomalies that could signal performance issues or resource constraints.
  • Throughput: Measure how many requests your system processes per unit of time. Higher throughput means better performance and scalability.
  • Error Rates: Track the number of errors during tests. High error rates can negatively impact performance and user experience.
  • Resource Utilization: Monitor CPU, memory, and network usage. You can identify any resource bottlenecks that might affect performance.
  • Scalability: Test how well your system scales by gradually increasing the load. This is to ensure that expected increases in traffic are handled efficiently.

Limitations for Jmeter

Although performance testing with JMeter Apache is a great option, there are some limitations of JMeter which are as follows:

  • Server-side focus: JMeter is primarily designed for server-side testing and may require additional configuration or plugins for comprehensive browser interaction testing.
  • Scripting complexity: JMeter scripting involves working with various test plan elements and regular expressions, requiring some technical expertise.
  • Limited real-time monitoring: JMeter provides limited real-time test monitoring capabilities compared to other tools. To obtain real-time data, you may need to integrate external monitoring tools.
  • No support for certain technologies: JMeter does not natively support AJAX, JavaScript, or Flash. You may need additional plugins or workarounds to test these technologies effectively.
  • Resource intensive: Running large tests can strain your machine. To prevent this, you can use distributed testing to share the load across multiple machines.
  • Challenges with complex applications: JMeter can struggle with complex modern web applications, like single-page applications (SPAs), as it may not accurately simulate real user interactions.

Conclusion

Mastering performance testing with JMeter equips testers and developers with a versatile tool for ensuring robust and scalable applications. Setting up JMeter is straightforward, and creating test plans can be tailored to meet specific requirements, ensuring thorough performance assessments. By following the techniques given above, users can maximize the effectiveness of their performance testing efforts. 

Author Detail

Author-Surya
Surya

Dedicated QA professional focused on software quality and keen attention to detail. Skilled in executing test cases, identifying Test Scenarios, defects, and collaborating with development teams.

Phone

Next for you