1,736 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
1
answer
261
views
Kafka load test on Gatling
Gatling as maven dependencies:
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>4.19.1</version>
</plugin>
...
0
votes
1
answer
244
views
Misunderstanding with the installation gatling 3.14.3
According to this instruction https://docs.gatling.io/tutorials/oss/ i try to install Gatling to my project.
I have a Spring Boot 3.5.3 and i added latest gatling as maven dependencies
<plugin>
&...
-1
votes
1
answer
71
views
i.g.h.client.impl.DefaultHttpClient - Failed to connect to remoteAddress=/XXXX from localAddress=null
I'm executing mvn gatling:test with jenkinsfile, but the gatling connection always timeout. The debug info shows the following:
i.g.h.client.impl.DefaultHttpClient - Failed to connect to remoteAddress=...
1
vote
1
answer
72
views
Failing custom check not marked as KO in Gatling report
I have the following code to check if my response body contains a specific value. I use Gatling with Java.
I have modified the returns in ocspStatusCheck so it returns with a failure in each case, to ...
0
votes
1
answer
48
views
JMESPath filter fail with Gatling
Let's say GET /api/v1/elements returns:
[
{
"id": 1,
"name": "Foo",
"totalChildren": 0
},
{
"id": 2,
...
0
votes
1
answer
86
views
Gatling doWhile polling http issue, it only called once then infinitely loop
I have a gatling test to poll job status, my API return 202 status while job is running, until job finished, the API return 200 http status, no http body.
The test shows code as below, the backend job ...
-2
votes
1
answer
60
views
Gatling concurrent requests
Need to build a scenario where I make an API call first and use the response from the 1st API call to call another API concurrently (say up to 5 times).
How do I do it?
Tried repeat which is doing it ...
0
votes
2
answers
84
views
Replace null values in csv when using Feeder with gatling
I am using FeederBuilder<String> to create a feeder for performance tests with gatling. The csv I'm using contains empty values. The performance tests errors out when it encounters those empty ...
-2
votes
1
answer
38
views
Is there a way to have a gatling check pass if values do not differ by more than 1.00?
I need to modify the code below so the check() will pass, even if values are not exact as long as abs(val1 -val2) < 1.00
.check(
jsonPath("$.data.attributes.contentValue")
.is(...
0
votes
1
answer
52
views
Parallel http calls in same gatling scenario
I have a scenario where I am preparing the request for a user and then hitting 2 endpoints with the same request
val scenario9 = scenario("All end points")
.feed(feeder)
.exec(...
0
votes
1
answer
97
views
Confusing Gatling test report
When running a Gatling test, a report is printed to stdout after execution, such as:
21:16:16 ---- Global Information --------------------------------------------------------
21:16:16 > request ...
0
votes
1
answer
135
views
Gatling check status saveAs function doesn't work with multiple status check
I am trying to check the HTTP status and save the status code in a variable, but in Gatling, if I add multiple status checks as follows.
.asJson().check(status().saveAs(RESPONSE_HTTP_STATUS_CODE), ...
0
votes
1
answer
60
views
Gatling's andThen() is not getting executed
As part of a single Simulation, I want to run:
Warm Up scenario, which starts from 0 RPS, gradually increases up to $target RPS, and holds the #target RPS for several seconds
After the Warm Up is ...
1
vote
1
answer
56
views
Karate-Gatling: requests with random id are not getting aggregated even if I set the protocol
I am doing the demo for Karate Gatling to see if it meets our needs for performance tests,
my test scenario is to create many transactions and check the transaction status, below are some of my ...
0
votes
1
answer
99
views
How to insert the request body?
Help, guys, I have been assigned to research gatling with javascript for performance testing, but I am quite junior and struggling to even make a login request from a project.
This is the ...