DEV Community

Cover image for PerfAction - Run JMeter Performance Tests
NaveenKumar Namachivayam ⚡
NaveenKumar Namachivayam ⚡

Posted on

PerfAction - Run JMeter Performance Tests

My Workflow

PerfAction helps to automate performance testing using Apache JMeter and its plugins.

Submission Category:

Wacky Wildcards

Yaml File or Link to Code

GitHub logo QAInsights / PerfAction

GitHub Action to run performance tests using Apache JMeter and its plugins.

About PerfAction

saythanks

This GitHub Action helps to automate performance testing using Apache JMeter and its plugins.

PerfAction also featured in LoadTestWorld 2021 conference.

PerfAction for JMeter

How to use this GitHub Action?

Prerequisites

Following are the prerequisites for this GitHub Action:

  • test-plan-path
    • Mandatory
    • JMeter test plan and its dependencies such as test data, plugins etc
  • args
    • Optional
    • Additional arguments you can pass it to your test plan execution

Usage

Example #1 with no arguments

- name: JMeter Test
  uses: QAInsights/PerfAction@v3.1
  with
    test-plan-path: ./TestPlans/S01_SimpleExample/S01_SimpleExample.jmx
    args: ""
- name: Upload Results
  uses: actions/upload-artifact@v2
  with:
    name: jmeter-results
    path: result.jtl

Example #2 with arguments

- name: JMeter Test
  uses: QAInsights/PerfAction@v3.1
  with:
    test-plan-path: ./TestPlans/S01_SimpleExample/S01_SimpleExample.jmx
    args: "-H my.proxy.server -P 8000"
    
- name: Upload Results
  uses: actions/upload-artifact@v2
  with:
    name: jmeter-results
    path: result.jtl

Download JMeter Test Results

By default, this GitHub Action will log the performance statistics under result.jtl. After the execution, it will be uploaded to the GitHub…

Additional Resources / Info

None

Top comments (0)