Measurement of time spent from sending the request until received a response
Questions tagged [response-time]
219 questions
0
votes
0 answers
Why 200ms is popular as acceptable response time?
So many articles and books that talk about application performance quote 200 ms as an example of acceptable response time.
I am curious how this 200 ms arrived at? Why is it not 100 ms or 300 ms? What is the rationale behind 200 ms? Is it driven by…

smajithia
- 81
- 1
- 2
0
votes
0 answers
Getting webserver response time with Python script
For a small app that monitors a webserver I need to collect the response time.
Here is my code snippet:
start = time.process_time()
response = requests.post(url, timeout=3.0)
request_time = time.process_time() - start
print("Request…

NazgulNr5
- 1
- 1
0
votes
1 answer
how to perform HorizontalPodAutoscaling in Kubernetes based on response time (custom metric) using Prometheus adapter?
Hi everyone,
I have a cluster based on kubeadm having 1 master and 2 workers. I have already implemented built-in horizontalPodAutoscaling (based on cpu_utilization and memory) and now i want to perform autoscaling on the basis of custom metrics…

zain ul abedin
- 185
- 1
- 1
- 9
0
votes
1 answer
Jmeter response time is higher than manual execution time
There is difference I see in the Jmeter response time versus manually captured response time.
I record the execution using blazemeter and make necessary token updates to execute the scripts.
Result is as below :
Launch : Jmeter-8000ms :…

greeshma setty
- 1
- 2
0
votes
3 answers
Does JMeter scripts actually creates records in database
Let's say I run a recorded script for 'New User Registration' function of a web site to evaluate the response time for entire scenario. When I run the recorded script from JMeter, for each registration script, is there a new user record getting…
0
votes
0 answers
populating more fields of mongoose collection causing delay in response time in node js api
I have written api in node js with mongoose in which a collection have lot of foreign fields references. Populating them is needed for client side and it is causing delay in response time.
I have tried fetching only those documents of other…

Dinesh Sathrasala
- 103
- 11
0
votes
0 answers
Request Wait Time/Time to First Byte
While working on performance improvement, I came across situation where
Application logs giving X time to execute all the steps(using Stopwatch)
IIS logs, which also suggest X time-taken for that request.
But our client another API, which is…

Ashutosh Singh
- 609
- 6
- 21
0
votes
0 answers
Bot Framework Email channel slow response time
I created basic QnA Maker and connected it to Web App Bot service in Azure. I configured the Email channel with o365 account. When I send a message to that email it takes 5-10 minutes until I get the response back. It seems as if the bot was…

simonvaros
- 86
- 5
0
votes
2 answers
I want to report response time taken by each page via Jmeter, While there are multiple API calls being made on page load. How to do that?
I am scripting using Jmeter. The Login page calls multiple APIs and then logs in the user and next page that comes is Dashboard. On Dashboard 8 APIs are called. I need to report the response time taken by Login page, Dashboard Page and so on.…

Maddy
- 674
- 1
- 7
- 26
0
votes
1 answer
Understand Response Time
I'm trying load testing using JMeter and application is developed using .Net
When I see JMeter Log, these are the values:
Latency: 142
Connect: 81
Elapsed: 142
When I checked IIS Log file for the same request, I noticed "Time-Taken" column is:…
0
votes
1 answer
different response time when executing a specific query
I've been trying to figure out a performance issue for a while and would appreciate if someone can help me understand the issue.
Our application is connected to Oracle 11g. We have a very big table in which we keep data for last two months. We do…

Suo6613
- 431
- 5
- 17
0
votes
1 answer
How to calculate response time of each page , which contains multiple http samples in jmeter?
We have a application that contains 10 to 11 http samples in each page, we need to find the response time of each web page?, how to calculate? I have used transaction controller, but that gives sum of all samples response time, which in reality is…

Hacker
- 71
- 1
- 5
0
votes
1 answer
Is it possible to fail a thread/sample in Jmeter if response time is too long?
I have multiple thread groups which are executing in parallel. I need to have a test plan in which if response time crosses 6 sec for any of the sample for any thread group, it should fail the sample, stop it and move on to the next sample.
Any…

vsingh
- 125
- 1
- 2
- 16
0
votes
3 answers
Measure response time for an API
I have 416 webservice API's to test . I am loading those url's from a CSV file . my test need to find an API which takes more than 2 sec to respond . I couldn't find a way to measure response time for an API .
I am using
Thread Users - 416
…

user1553680
- 339
- 3
- 6
- 18
0
votes
2 answers
Averages greater than 95 percentile in jmeter
my average response time is coming greater than the 99 percentile( in JMeter).

Sneha Kamath
- 11
- 2