/  Yamcs HTTP API  /  RocksDB  /  List Tablespaces

List TablespacesΒΆ

List tablespaces

URI Template

GET /api/archive/rocksdb/tablespaces

Response Type

interface ListRocksDbTablespacesResponse {
  tablespaces: RocksDbTablespaceInfo[];
}

Related Types

interface RocksDbTablespaceInfo {
  name: string;
  dataDir: string;
  databases: RocksDbDatabaseInfo[];
}

interface RocksDbDatabaseInfo {
  tablespace: string;
  dataDir: string;
  dbPath: string;
}