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 StreamsΒΆ
List streams
Note that this will only list the fixed columns of the stream. Tuples may always have extra columns.
URI Template
GET /api/archive/{instance}/streams
{instance}
Yamcs instance name.
Response Type
interface ListStreamsResponse {
streams: StreamInfo[];
}
Related Types
interface StreamInfo {
// Stream name
name: string;
column: ColumnInfo[];
columns: ColumnInfo[];
script: string;
dataCount: string; // String decimal
// Subscribers represented in the format ``className@hashCode``.
subscribers: string[];
}
interface ColumnInfo {
// Colum name
name: string;
// Column type
type: string;
enumValue: EnumValue[];
// Attribute indicating automatic auto increment upon
// record insertion. Only set for table column info.
autoIncrement: boolean;
}
interface EnumValue {
value: number;
label: string;
}