I currently have a test plan where I use a random variable to submit a post request to a given URL (/app/${app_id}
).
I want to also re-use the random variable app_id
to poll the status of that app (/app/${app_id}/status
). Note there would be multiple requests to the status URL.
My current idea is to:
- have one thread group that submits the posts
- save a list of the randomly generated
app_id
s - in another thread group, read the list of
app_id
s and for eachapp_id
, loop the status request
Is this a sensible approach? If so, how can I go about saving the randomly generated app_id
s and then reading them?
Also, if there is a better approach to this situation, I'm all ears :)