Skip to main content

Errors

This Eggplant Performance Test Controller REST method gets a list of all the errors that have occurred during the test.

URL

/test_controller/api/1.0/<workspace>/<project>/<test>/errors

HTTP Method

GET: Gets a list of all the errors that have occurred during the test

Response Parameters

TypeDescription
<string>The VU group in which this error occurred.
<integer>The VU in which this error occurred.
<integer>The VU in which this error occurred.
<integer>The number of milliseconds since the beginning of the test run at which this error occurred.
<string>The error ID.
<string>The error text.
<integer>The thread ID on which this error occurred.

Example Request

http://localhost:5001/test_controller/api/1.0/Demo%20Workspace/Demo/demoScript/errors

Example Response

[
["demoScript", 1, 3, 359, "", "An error occurred!", 48020],
["demoScript", 1, 3, 42202, "", "An error occurred!", 48020]
]