jetty-load-generator icon indicating copy to clipboard operation
jetty-load-generator copied to clipboard

Results 20 jetty-load-generator issues
Sort by recently updated
recently updated
newest added

Bumps [groovy](https://github.com/apache/groovy) from 3.0.11 to 3.0.12. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.codehaus.groovy:groovy&package-manager=maven&previous-version=3.0.11&new-version=3.0.12)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies
java

The `LoadGenerator.Builder` currently lacks an easy way to set a `ByteBufferPool`, something like the following: ```java LoadGenerator.builder() .byteBufferPool(bufferPool) ... ``` Currently the only way to set the byte buffer pool...

enhancement

The load generator compensates for external pauses that cause missing samples by calculating the required samples to send in the next iteration. However, the send time is not the intended...

Bumps [groovy](https://github.com/apache/groovy) from 4.0.5 to 4.0.6. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.groovy:groovy&package-manager=maven&previous-version=4.0.5&new-version=4.0.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies
java

Bumps [org.apache.maven.plugins:maven-source-plugin](https://github.com/apache/maven-source-plugin) from 3.3.0 to 3.3.1. Commits f80596e [maven-release-plugin] prepare release maven-source-plugin-3.3.1 7626998 Bump apache/maven-gh-actions-shared from 3 to 4 83c963c Bump org.apache.maven.plugins:maven-plugins from 39 to 41 (#18) 40ae495 Bump org.codehaus.plexus:plexus-archiver...

dependencies
java

Bumps [org.apache.maven.plugins:maven-source-plugin](https://github.com/apache/maven-source-plugin) from 3.3.0 to 3.3.1. Commits f80596e [maven-release-plugin] prepare release maven-source-plugin-3.3.1 7626998 Bump apache/maven-gh-actions-shared from 3 to 4 83c963c Bump org.apache.maven.plugins:maven-plugins from 39 to 41 (#18) 40ae495 Bump org.codehaus.plexus:plexus-archiver...

dependencies
java

Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.11 to 0.8.12. Release notes Sourced from org.jacoco:jacoco-maven-plugin's releases. 0.8.12 New Features JaCoCo now officially supports Java 22 (GitHub #1596). Experimental support for Java 23 class files...

dependencies
java

Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.11 to 0.8.12. Release notes Sourced from org.jacoco:jacoco-maven-plugin's releases. 0.8.12 New Features JaCoCo now officially supports Java 22 (GitHub #1596). Experimental support for Java 23 class files...

dependencies
java

Running a load test from the commandline generates a report like: ``` { "report": { "beginInstant": "2023-03-17T02:19:35.460735978Z", "completeInstant": "2023-03-17T02:20:35.723580110Z", "recordingDuration": 59927, "availableProcessors": 4, "averageCPUPercent": 18.12186327810192, "requestRate": 99.99645797985681, "responseRate": 99.70362162675781, "sentBytesRate":...

When the load generator begins, it immediately sleeps for an amount of time related to the request rate. This is not optimal, as it is unexpected (although convenient from the...