Skip to main content

Eggplant Performance Test Controller: GET Warnings Method

This method gets a list of all the warnings that have occurred during the test.

URL

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

HTTP Method

GET: Gets a list of all the warnings 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 type of event (always 4 to signify a warning).
<integer>The number of milliseconds since the beginning of the test run at which this warning occurred.
<string>The warning ID.
<string>The warning text.
<integer>The thread ID on which this warning occurred.

Example Request

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

Example Response

[
["demoScript", 1, 4, 359, "", "A warning occurred!", 48020],
["demoScript", 1, 4, 42202, "", "A warning occurred!", 48020]
]