Skip to content
Artem Fedorov edited this page Nov 24, 2017 · 34 revisions

BlazeMeter API client provide you capabilities for working with BlazeMeter API from your Java application.

Just add the following dependency to your pom.xml file:

<dependency>
    <groupId>x</groupId>
    <artifactId>x</artifactId>
    <version>x</version>
</dependency>

For easier development we wrapped a lot of additional options in one simple class: BlazeMeterUtils.java. See short instructions how you can use it.

If you use proxy server see instructions how to set up proxy.

Now a short list of features of this library:

  • User

    • Get list of user Accounts;
  • Account

    • Create Workspace;

    • Get list of Workspaces;

  • Workspace

    • Create Project;

    • Get list of Projects;

    • Get list of Single Tests;

    • Get list of Multi Tests;

  • Project

    • Create Single Test;

    • Get list of Single Tests;

    • Get list of Multi Tests;

  • Single Test

    • Start;

    • Start external;

  • Multi Test

    • Start;
  • Anonymous Test

    • Start external;
  • Session

    • Send data;

    • Post properties;

    • Download JTL report;

    • Terminate external;

  • Master

    • Get public report link;

    • Download JUnit report;

    • Get list of Sessions;

    • Stop;

    • Terminate;

    • Get Master status;

    • Get summary report;

    • Get functional report;

    • Post notes;

    • Get CI status;

Clone this wiki locally