3,462 questions
0
votes
2
answers
34
views
Alternative of distributed load testing
I need help to find a way to generate stress/capacity testing on webpage.
Server Configuration of Load generator
Processor: AMD EPYC 7R13 @ 3.6 GHz, 4 Cores
Operating System: Ubuntu 22.04 (x86_64)
...
0
votes
1
answer
100
views
Artillery + PlayWright + Fargate: Test durations ramping up and timing out
I'm running a load test on a web application using Artillery with the Playwright engine on AWS Fargate. I'm observing a steady increase in test durations as the test progresses, and a high percentage ...
0
votes
0
answers
52
views
Artillery Socket.IO: {{token}} in socketio.query interpolates as 'undefined' despite beforeConnect
I'm trying to load test a Node.js Socket.IO server using Artillery. My server expects an authentication token as a query parameter during the handshake. I'm using Artillery's socketio.beforeConnect ...
0
votes
1
answer
67
views
How can I make my JMeter test script reusable across different environments?
I'm working with a JMeter test script where I need to use some pre-defined values (such as client_id, client_secret, scope, etc.) different for each request, that change depending on the environment (...
0
votes
0
answers
53
views
Cleaup test data in K6 `teardown` in UI load test
I have a UI load test written in K6. I am creating a bunch of entries on the page and keeping tab of them using openKv (https://github.com/oleiade/xk6-kv) in the code so that I can delete them after ...
0
votes
1
answer
66
views
Locust distributed mode: "Unknown message type '_distributor_request' from worker.." warning halts users
I am using Locus in distributed mode with 1 master and n workers to run a load test.
I am also using the locust-plugins library to utilize its Distributor utility. My goal is to preallocate one unique ...
0
votes
1
answer
54
views
JMeter WebSocket Plugin - Received Ping Frame Data and Missing Responses
I am using JMeter 5.6.3 with the Peter Doornbosch WebSocket Sampler Plugin to test a WebSocket API. However, I am facing two issues:
Issue 1: Received Ping Frame Data
When I send a WebSocket request ...
0
votes
1
answer
107
views
How to set Jmeter constant throughput timer to JMX XML as user input
I am running a load test using JMeter and I want take the ConstantThroughputTimer value as user input and set in the JMX XML. The JMeter shell script is being called from a bash script.
Bash Script:
...
0
votes
1
answer
83
views
How To Replay Production Traffic Using JMeter
I have searched for answers to this and have found many hits containing the same advice - follow the guidance in this BlazeMeter blog article which sounds perfect for my requirements:-
https://www....
0
votes
1
answer
314
views
Artillery Playwright Not Capturing Specified Metrics
I am using Artillery with Playwright to measure performance metrics of a website, but I am not getting the metrics I specified in the configuration. Instead, I am seeing only browser-related metrics.
...
0
votes
2
answers
171
views
How to approach performance testing and memory leak analysis for a .NET application
Our team has identified a memory leak in a .NET application running in a Kubernetes pod and needs to pinpoint and optimize the performance bottleneck. As a performance tester, I have experience in ...
0
votes
1
answer
79
views
How to set up a test in jmeter with reusable configuration?
I have a lot of test plans that use the same config set up and I've been looking into how to make the set up reusable instead of having to copy and paste it between the many test plans.
Examples of ...
1
vote
0
answers
164
views
How to use custom tags for k6 with xk6-output-prometheus-pushgateway?
I'm trying to capture http_errors with a custom tag to differentiate their status code, within my script I'm creating const httpErrors = new Counter("http_errors");. Then within the default ...
-1
votes
1
answer
52
views
Logging in and out of websites confusion
I am new to Jmeter and learning as I go on a small project in work, but I think I'm getting confused when it comes to the logging in and out of websites, as well as navigating around areas of a logged ...
1
vote
0
answers
151
views
How to prevent simultaneous logins with the same user credentials in k6 for realistic web UI testing?
I'm building a web UI test in k6, where I have a list of users and passwords stored in a SharedArray. Each virtual user (VU) logs in with one of these credentials and performs an ordering process. ...
0
votes
0
answers
86
views
Requests per second(RPS) not going above certain number with Hana database and Locust
I wanted to perform some load testing on Hana database. For this I decided to use Locust and I referenced the implementation given in this link for another database:
https://community.cratedb.com/t/...
6
votes
2
answers
480
views
Getting request_before_redirect.url is None for POSTS requests in Locust Python
Trying to use locust following the documentation,
https://docs.locust.io/en/stable/quickstart.html
from locust import HttpUser, task
class TestUser(HttpUser):
# @task(1)
# def health(self):
...
0
votes
0
answers
1k
views
K6 configuration for more than 1000 Requests per second
I am using K6 to do some load testing but whatever configuration I give it I cannot get it to make more than ~1000 requests per second.
I’ve tried various scenarios to get the RPS much higher but the ...
-1
votes
1
answer
654
views
how do i include the errors with the responses in k6 html output
i have this k6 script but i can't seem to get the errors to show up in my html file although if i console.log i see them
import http from "k6/http";
import { sleep, check } from &...
0
votes
1
answer
333
views
How to run a k6 script with multiple payloads using fs module?
I'm trying to run a k6 script that uses multiple payloads stored in JSON files. I want to read these files using the fs module and send them as part of my HTTP requests. However, it seems that the fs ...
0
votes
1
answer
68
views
Load testing with stateful data [POST http request]
I'm trying to understand how load testing can be done on a POST HTTP Request when the data are stateful.
For clarity, here's an example:
When a POST HTTP request is fired, the data will changed from A ...
0
votes
1
answer
149
views
Time calculation for Grafana K6 test script before execution
While executing grafana k6 script on the console the time to be taken for test execution is mentioned, but do we have a way to know in advance ie before actually the test begin execution how much time ...
0
votes
1
answer
125
views
How to retrieve statistics from master node as tests are running
I am running Locust tests using distributed load generation with the flag:
--processes -1
I used to get the stats while the tests were running from
from locust.stats import ...
0
votes
1
answer
51
views
Use JMeter to test the running time of the Azure Data Factory pipeline
We have an Azure Data Factory pipeline and we need to pay attention to its performance. So we try to test it with JMeter.
We want to trigger the debug button multiple times through the API (with ...
0
votes
1
answer
149
views
How to generate .jmx file for ADF pipeline
Recently I want to do load testing for my azure data factory pipelines.
Now, I follow the document Load test a website by using a JMeter script in Azure Load Testing:
But the question is that:
This ...