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 ThreadsΒΆ
List threads
URI Template
GET /api/threads
Query Parameters
depth
Maximum depth of each thread's stacktrace. Default: no limit.
Response Type
interface ListThreadsResponse {
threads: ThreadInfo[];
}
Related Types
interface ThreadInfo {
id: string; // String decimal
name: string;
state: string;
native: boolean;
suspended: boolean;
group: ThreadGroupInfo;
trace: TraceElementInfo[];
}
interface ThreadGroupInfo {
name: string;
parent: ThreadGroupInfo;
}
interface TraceElementInfo {
className: string;
fileName: string;
methodName: string;
lineNumber: number;
}