--- Title: Current node database debug info requests alwaysopen: false categories: - docs - operate - rs description: Documents the Redis Enterprise Software REST API debuginfo/node/bdb requests. headerRange: '[1-2]' linkTitle: bdb weight: $weight url: '/operate/rs/7.4/references/rest-api/requests/debuginfo/node/bdb/' --- {{}} This REST API path is deprecated as of Redis Enterprise Software version 7.4.2. Use the new path [`/v1/bdbs/debuginfo`]({{< relref "/operate/rs/7.4/references/rest-api/requests/bdbs/debuginfo" >}}) instead. {{}} | Method | Path | Description | |--------|------|-------------| | [GET](#get-debuginfo-node-bdb) | `/v1/debuginfo/node/bdb/{bdb_uid}` | Get debug info for the current node regarding a specific database | ## Get database debug info for current node {#get-debuginfo-node-bdb} GET /v1/debuginfo/node/bdb/{int: bdb_uid} Downloads a tar file that contains debug info for the specified database (`bdb_uid`) from the current node. #### Required permissions | Permission name | |-----------------| | [view_debugging_info]({{< relref "/operate/rs/7.4/references/rest-api/permissions#view_debugging_info" >}}) | ### Request {#get-request} #### Example HTTP request GET /v1/debuginfo/node/bdb/1 ### Response {#get-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 | Key | Value | Description | |-----|-------|-------------| | Content-Type | application/x-gzip | Media type of request/response body | | Content-Length | 653350 | Length of the response body in octets | | Content-Disposition | attachment; filename=debuginfo.tar.gz | Display response in browser ### Status codes {#get-status-codes} | Code | Description | |------|-------------| | [200 OK](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.2.1) | Success. | | [500 Internal Server Error](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.1) | Failed to get debug info. |