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
Get Item LogΒΆ
Get an item log
URI Template
GET /api/timeline/{instance}/items/{id}/log
{instance}
Yamcs instance name
{id}
Item identifier
Query Parameters
source
Item source
Response Type
interface TimelineItemLog {
id: string;
//item (change) log
entries: LogEntry[];
}
Related Types
interface LogEntry {
time: string; // RFC 3339 timestamp
user: string;
type: string;
msg: string;
}