github abstracta/jmeter-java-dsl v1.10
1.10

latest releases: v1.29, v1.28.1, v1.28...
16 months ago

You can now use AzureEngine to easily run your tests at scale with Azure Load Testing and get all Azure Load Testing goodies!

Here is an example:

TestPlanStats stats = testPlan(  
  threadGroup(2, 10,  
    httpSampler("http://my.service")  
  )  
).runIn(new AzureEngine(System.getenv("AZURE_CREDS"))
    .testName("dsl-test")  
    .engines(2)  
    .testTimeout(Duration.ofMinutes(20)));

And you can get more details in the user guide.

Thanks @uddirulz for asking about this, to the Azure Load Testing team for all the support and help while implementing this integration, and special thanks to @ninallam who has been really committed and helped a lot in the implementation.

Finally, you can now also use counter for simple auto incremental variables. Check the user guide for more details.

Don't miss a new jmeter-java-dsl release

NewReleases is sending notifications on new releases.