Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/colinzhu/jmeter-web-runner

It's a simple tool to trigger JMeter to run on the server from web browser and monitor the output in real time
https://github.com/colinzhu/jmeter-web-runner

jmeter vertx web-console web-runner

Last synced: 4 months ago
JSON representation

It's a simple tool to trigger JMeter to run on the server from web browser and monitor the output in real time

Awesome Lists containing this project

README

        

# JMeter Web Runner

JMeter Web Runner is a super simple java tool that allows you to trigger jmeter to run (on a server) from a web browser and see the output in real time.

## Usage

### Option 1 - run the compiled jar directly
1. Download the latest jar from "Packages"
2. run the jar like this:
```shell
java -DjmeterHome=/home/colin/dev/apache-jmeter-5.5 -Dport=8080 -jar jmeter-web-runner-0.1.1-full.jar
```
3. Open a web browser and navigate to `http://localhost:8080`
4. Enter the JMX test file name e.g. test.jmx and click "Start"

### Option 2 - add it as a dependency
1. Add the dependency into your project:
```xml

io.github.colinzhu
jmeter-web-runner
0.1.1

```
2. Implement your own starter. Example: `DefaultStarter.java`