-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calculate http2 async controller parallel processing time #47
Comments
@3dgiordano @ck-singh noted one big drawback of using workaround with parallel controller to calculate parent time. |
@serputko, if not parallel controller, is there any other suggested workaround to calculate the correct transaction response time when using http2-async-controller? |
@ck-singh We can do kind of dirty hack and calculate it by ourselves, might be not too efficient but anyway
Example: 4 separate requests in Async controller taking from 530 to 649ms each, total execution time is 668ms. |
Hi @serputko @ck-singh @3dgiordano Thanks in advance. |
^^^^ Hi @serputko @ck-singh @3dgiordano. Do you have any additional information/help on the above regarding "Transaction Controller" summing up all the Sampler Response times? ^^^^^ Thanks in advance. |
Just wondering if the parallel processing time for the Async controller is in the pipeline to be fixed? For context, I'm using "Http/2 samplers" inside "Http/2 Async Controller" inside a "Transaction Controller". =========================
Unfortunately, the transaction response time is reported as ~500ms (it's adding them up) As you can imagine, this is impacting how I report Performance results. |
Can we measure how long http2 async controller took to execute? right now if i add it to transaction controller it add all response times, i'd like to have something similar to what parallel controller provides, just a time from the beginning of execution till last response received
actually using parallel controller with 1 thread as a parent of http2 async controller gives valid timings, so could be used a quick solution
At the same time it's not proving both Parent sample time and Child requests times
The text was updated successfully, but these errors were encountered: