POTL12345
POTL12345

Reputation: 29

JMETER Test plan with multiple thread groups

Can a jmeter test plan(JMX) with multiple thread groups have same name for all the thread groups and samplers inside??

What's the downside if we use this way

Upvotes: 1

Views: 94

Answers (1)

Dmitri T
Dmitri T

Reputation: 168217

There are no limitations when it comes to naming Thread Groups or Samplers, you can use the same label everywhere.

If needed you can trace down the problematic or failed SampleResult to this or that Sampler by looking at threadName column of the .jtl results file.

The only potentially dangerous limitation I can think of is properly naming Transaction Controller's children as if it will differ from the transaction Controler's name followed by dash followed by zero-based index of the Sampler - JMeter will fail to properly calculate the throughput and you will be seeing extra sample results in i.e. HTML Reporting Dashboard

enter image description here

Upvotes: 0

Related Questions