Need excel coding to pushing the incoming flow jobs - excel

I have a query , I would like to create a excel template which should update me the time required for required for the jobs comes in
For instance
I have 30 employee who can work works on 20 request from 1 AM -2 AM with effort involved will be 3 hours i.e 180 minutes
If we have about 20 request incoming how can we automatically excel whould update the time required
May be 210 Minutes or 240 Minutes somehting like that
can u guide me

Related

How could I simulate the following scenario in JMETER?

I want to do the following:
-20 users log into the application.
-The users have to remain connected to the session, but each 20 minutes they have to make an specific request to the page.
-I would like to measure the time of the last request for each user after being connected the 2 hours and making the specific request each 20 minutes.
Which thread group or actions will be recomendable?
Add Thread Group and configure it as follows:
where:
20 - is the number of connected users
6 - is the number of iterations (user makes a request each 20 minutes == 3 requests per hour == 6 requests per 2 hours)
Add Once Only Controller
Add sampler(s) performing the login under the Once Only Controller. This way the users will perform the login only once
Add HTTP Request sampler which you're going to run each 20 minutes below the Once Only Controller
Add JSR223 PostProcessor as a child of the HTTP Request and put the following code into "Script" area:
if (vars.get('__jm__Thread Group__idx') != '5') {
prev.setIgnore()
}
this will instruct JMeter to not to record first 5 iterations metrics, only last one will be recorded.
Add Flow Control Action sampler and configure it to sleep for 1200000 milliseconds (20 minutes)
Test plan overview:

How cache and execute in nodejs a call

I have an application that it's gathering data from another application, both in NodeJS.
I was wondering, how can I trigger sending the data to a third application on certain conditions? For example, every 10 mins if there's data in a bucket or when I have 20 elements to send?
And if the call on the third parties fails, how can I repeat it after 10-15 mins?
EDIT:
The behaviour should be something like:
if you have 1 data posted (axios.post) AND [10 mins passed OR other 10 data posted] SUBMIT to App n.3
What can help me doing so? Can I keep the value saved until those requirements are satisfied?
Thank you <3
You can use packages like node-schedule which is popular to schedule tasks. When callback runs check if there is enough data(posts) to send.

Is there a way to select an unbroken series of requests each lasting a given duration?

I need to find any requests where 5 of them in a row take 30 seconds or more.
Is there a way to do this using a kusto query?
I guess it could be rephrased as 'if there is a request that takes 30 seconds or more to get a response, check if the next 4 requests also take 30 seconds'.
Check this thread -
Check for the request where response time is higher
Hope it helps.

how to get transactions number reduced with Loadrunner Controller

On a Load Test with Loadrunner controller, I have a script which make 1029 Transactions per Hour with 1 Virtual User,with 1 "number of Iteration" ,"ignore think time", and pacing setting which start every iteration at a random interval every 3 to 4 seconds but I want to reduce the transactions to 45 Transactions per Hour. I set then the think time to "Limit think time to : 65", but without success.
Does anyone knows how to reduce the number of transactions. Is there any run time setting which must be changed to get this transactions reduced?
Use 'fixed' intervals of 80 seconds.
45 transactions per hour
3600 seconds in an hour
= 80 seconds per transaction

Transaction per second - vuser relation

I want to setup loadtest with Loadrunner. System requirements are as below
1- max 30K users can be online i want to test if system can reach 15TPS.
2- i want to test if system can reach 2000TPS while some of online
users can visit 5 different pages. With how many vusers i should do this test ?
For both browsing and login operations response time is 0.1 or 0.2 seconds but think-time is ignored for login operation but 5 minutes for browsing operations. ( This value can be changed for sake of simplecity.) For login operation i setup vusers count to 30 and used 1000 iterations for reaching 15TPS.
i know that we can calculate vusers with below
number of required VUsers = required transaction per seconds * user
scenario length (sec)
but i m not sure how to apply this to second scenario.
Required TPS =15
users 5
Pacing =5/15
use this and it will work

Resources