MethodPathDescription
GET/v1/bdbs/debuginfoGet debug info from all databases
GET/v1/bdbs/{bdb_uid}/debuginfoGet debug info from a specific database

Get debug info from all databases

GET /v1/bdbs/debuginfo

Downloads a tar file that contains debug info from all databases.

Required permissions

Permission name
view_debugging_info

Request

Example HTTP request

GET /bdbs/debuginfo

Response

Downloads the debug info in a tar file called filename.tar.gz. Extract the files from the tar file to access the debug info.

Response headers

KeyValueDescription
Content-Typeapplication/x-gzipMedia type of request/response body
Content-Length653350Length of the response body in octets
Content-Dispositionattachment; filename=debuginfo.tar.gzDisplay response in browser

Status codes

CodeDescription
200 OKSuccess.
500 Internal Server ErrorFailed to get debug info.

Get database debug info

GET /v1/bdbs/{int: bdb_uid}/debuginfo

Downloads a tar file that contains debug info from the database specified by bdb_uid.

Required permissions

Permission name
view_debugging_info

Request

Example HTTP request

GET /bdbs/1/debuginfo

Response

Downloads the debug info in a tar file called filename.tar.gz. Extract the files from the tar file to access the debug info.

Response headers

KeyValueDescription
Content-Typeapplication/x-gzipMedia type of request/response body
Content-Length653350Length of the response body in octets
Content-Dispositionattachment; filename=debuginfo.tar.gzDisplay response in browser

Status codes

CodeDescription
200 OKSuccess.
500 Internal Server ErrorFailed to get debug info.