Download All Application Logs

get

/essbase/rest/v1/applications/{applicationName}/logs/all

Returns a download zip file which contains all log files for the specific application.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK

Logs returned successfully.

400 Response

Bad Request

Failed to return logs.

500 Response

Internal Server Error.

Back to Top

Examples

The following example shows how to download all the logs for an Essbase application, as a zip file.

This example uses cURL to access the REST API from a Windows shell script. The calling user's ID and password are variables whose values are set in properties.bat.

cURL Command

call properties.bat
curl -X GET https://myserver.example.com:9001/essbase/rest/v1/applications/Sample_Dynamic/logs/all -H "Accept:application/zip" -o applogs.zip -u %User%:%Password%

Response

applogs.zip is downloaded to the directory from which the cURL command was issued, because the command option -o is used.

Back to Top