parametersjmetergetargumentsblazemeter

How could I find the GET arguments in BlazeMeter?


How could I find the GET arguments in BlazeMeter?

E.g. if I am load testing the endpoint https://my.endpoint.com?foo=${__UUID} in BlazeMeter I can see only the https://my.endpoint.com. While, I would be curious to know the request processing time for each foo's value.

Is it possible to somehow find the GET parameters?

I tried to find out the answer in the documentation, but with no success.


Solution

  • You can amend your HTTP Request sampler configuration as follows:

    1. As the samper "Name" use __groovy() function to generate a random UUID and save it into UUID JMeter Variable like:

      ${__groovy(UUID.randomUUID().toString(),UUID)}
      
    2. And in the sampler "Parameters" use ${UUID} JMeter Variable reference for the value created in the step 1

    enter image description here

    This way each Sample Result will have its own unique label in the Request Stats Report

    enter image description here