Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/colinzhu/jmeter-web-runner
- Owner: colinzhu
- License: mit
- Created: 2023-05-11T16:00:00.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-06-01T16:47:29.000Z (over 1 year ago)
- Last Synced: 2024-09-27T07:40:54.495Z (4 months ago)
- Topics: jmeter, vertx, web-console, web-runner
- Language: Java
- Homepage:
- Size: 41 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`