17 questions
0
votes
1
answer
71
views
Load Test Scenario Design for JMeter
I have a test plan created which contains a Single Thread Group, Approx 10 Transactions. Each transaction has a varying number of samplers. Example
TXN1: 2
TXN2: 7
TXN3: 17
Etc
Expected Application ...
0
votes
1
answer
268
views
How to measure http(s) requests sent per second sent by my executable?
I have a C++ executable which makes use of cURL to make HTTP(s) requests to an external server. Is there a good way for me to determine the requests sent per second? Any way or tool will be helpful.
1
vote
0
answers
640
views
How can i display data on my react table each second by adding new row per second using react and react hooks?
I am trying to get json data each second to add as a new row in my react table.
In the console it seems data is coming up each second but in the UI none of the data is popping up. Couldn't figure out ...
1
vote
1
answer
338
views
Locust - how to delay collection of RPS data until all threads have started
Scenario
locust test with gradual spawn-rate, chart looks like a 45-degree angle.
I would like to know the RPS of the system while all threads are running.
The out-of-the-box RPS value from locust ...
1
vote
2
answers
539
views
How to increment a String value by 1 each second JS
I have a value var x = "2". How can I increment x each second so that one second from when I defined x, x will equal to 3?
My code is shown bellow:
<img src="cookie.jpg" style=&...
0
votes
1
answer
99
views
Optimizing POSTs-per-second in Turbogears2
In a web game built on Turbogears v2.1.5, logged-in users POST a 16-byte message periodically. The server CPU reaches 100% when the POST rate is 60 POSTs-per-second. (For testing, we have removed ...
0
votes
1
answer
1k
views
Optimizing nginx requests per second
I'm trying to optimize a single core 1GB ram Digital Ocean VPS to handle more requests per second. After some tweaking (workers/gzip etc.) it serves about 15 requests per second. I don't have anything ...
1
vote
0
answers
169
views
WMI query for Counter of type RateOfCountsPerSecond32 shows raw value instead of persecond value
I have created some custom performance counters form my application to record TotalRequest (numberOfItems32) received and Request received per second (rateOfCountsPerSecond32). These 2 counters works ...
1
vote
0
answers
124
views
How to have continuous connection with MYSQL?
I have an application in JSP, using MYSQL database and Apache 6.0 server.
Interfaces : Admin and Client
Requirement : Admin should get all the client names who are logged in. There is one text-box, ...
0
votes
1
answer
208
views
Parse Hosting and Requests Per Second
I have written a small website for a non-profit. The website handles about 500 visitors per day, the site is pretty simple. It uses ExpressJS and serves up .ejs files that are updated weekly. It does ...
20
votes
3
answers
12k
views
Erlang (or elixir) performance (requests per second) is slow vs jruby?
Being a rubyist, I decided to take on erlang for high performance, reliable backend.
The setup is quite simple: get a post request, write stuff to redis, return statistics. All json. this is also why ...
2
votes
1
answer
2k
views
How to increase Requests/second with a constant execution time for Asp.NET?
I have a web application which is suffering because of low requests/sec under moderate traffic. The average request execution time is around 200ms per page.
To simulate the environment, I created a ...
2
votes
5
answers
1k
views
100 simultaneous requests on a servlet
I would like to test a sevlet that I 've made with simultaneous requests (100 or 1000 or more). I was searching about it and I found JMeter but I am not quite sure if it does what I want.
Do you know ...
0
votes
2
answers
4k
views
Apache2: server-status reported value for "requests/sec" is wrong. What am I doing wrong?
I am running Apache2 on Linux (Ubuntu 9.10).
I am trying to monitor the load on my server using mod_status.
There are 2 things that puzzle me (see cut-and-paste below):
The CPU load is reported as a ...
7
votes
2
answers
13k
views
Java based high volume transaction web application
I have next to no experience dealing with high volume transactional websites and recently came across this interesting question. I am interested in knowing where the bottlenecks in a Java web ...