GET
/
zk
/
export
/
{path}
Get ZooKeeper data
curl --request GET \
  --url https://{FUSION HOST}/api/zk/export/{path}
{
  "request": {
    "timestamp": "2023-11-07T05:31:56Z",
    "params": {
      "zkHost": "<string>",
      "path": "<string>",
      "encodeValues": "<string>",
      "includePaths": [
        "<string>"
      ],
      "excludePaths": [
        "<string>"
      ],
      "recursive": true,
      "ephemeral": true
    }
  },
  "response": {
    "path": "<string>",
    "children": [
      {}
    ],
    "data": "<string>"
  }
}

Path Parameters

path
string
required

Path from ZooKeeper root node, such as 'lucid/query-pipelines'.

Query Parameters

recursive
boolean
default:true

Return children nodes.

excludePaths
string[]

List of paths to exclude.

includePaths
string[]

List of paths to include.

encodeValues
string
default:base64

Values encoding. Default is 'base64'.

ephemeral
boolean
default:false

Include ephemeral nodes. Default is false.

Response

200 - application/json

successful operation

The response is of type object.