How do I group URL(s) under a single request name

Hi,

I have configured gatling to construct URL at runtime from feeder, following are some of the sample URL(s) generated

{base path}/1/register
{base path}/2/register
{base path}3/register

I see the report generated with above distinct URL (s), Is there a way to configure Gatling to display the report for single URL pattern or group URL(s) under one request?

The reports are grouped by the name given to the request.

.exec(
http(“the name of the request as it will appear in the reports”)
.get(…)
)

If you make sure you put a string in the call to .http(), they should be grouped together.