https://github.com/smoeding/jmeterplugin-datasketches
A JMeter listener using DataSketches to estimate response time quantiles and histograms
https://github.com/smoeding/jmeterplugin-datasketches
data-analysis jmeter jmeter-listeners jmeter-plugin
Last synced: over 1 year ago
JSON representation
A JMeter listener using DataSketches to estimate response time quantiles and histograms
- Host: GitHub
- URL: https://github.com/smoeding/jmeterplugin-datasketches
- Owner: smoeding
- Created: 2020-03-11T15:37:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-11T15:49:44.000Z (over 6 years ago)
- Last Synced: 2025-01-17T05:29:25.658Z (over 1 year ago)
- Topics: data-analysis, jmeter, jmeter-listeners, jmeter-plugin
- Language: Java
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jmeterplugin-datasketches
Most of the JMeter listeners are failing to report the distribution of measured response times. In general only mean, minimum and maximum times are measured.
Some listeners using graphics are available when a histogram or quantiles are needed. But these plugins are know to use a lot of memory because they keep all measured values to calculate the distribution when the load test has finished.
This listener plugin uses the [DataSketches](https://datasketches.apache.org/) library to implement a low overhead calculation of quantiles and histograms even for high transaction rates.
## Installation
This is currently work in progress and not ready for prime time.