Yamcs HTTP API
- Activities
- Alarms
- Audit
- Buckets
- Clearance
- Commands
- COP-1
- Database
- Events
- File Transfer
- IAM
- Indexes
- Instances
- Links
- MDB Override
- MDB
- Packets
- Parameter Archive
- Parameter Lists
- Parameter Values
- Processing
- Queues
- Replication
- RocksDB
- Server
- Services
- Sessions
- Stream Archive
- Table
- Time Correlation
- Time
- Timeline
Related
Yamcs Release Notes
Yamcs Server Manual
Source Code Documentation
Download this Document
List DatabasesΒΆ
List databases
URI Template
GET /api/databases
Response Type
interface ListDatabasesResponse {
databases: DatabaseInfo[];
}
Related Types
interface DatabaseInfo {
// Database name
name: string;
// Path on server
path: string;
tablespace: string;
// Names of the tables in this database
tables: string[];
// Names of the streams in this database
streams: string[];
}