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 Activity LogΒΆ
Get the activity log
URI Template
GET /api/activities/{instance}/activities/{activity}/log
{instance}
Yamcs instance name
{activity}
Activity identifier
Response Type
interface GetActivityLogResponse {
// Log entries
logs: ActivityLogInfo[];
}
Related Types
interface ActivityLogInfo {
// Log time
time: string; // RFC 3339 timestamp
// Source of this log message. One of:
//
// - SERVICE: the log is generated by the activity service
// - ACTIVITY: the log is generated by the activity itself
source: string;
// Log level
level: ActivityLogLevel;
// Log message
message: string;
}
enum ActivityLogLevel {
// Info level
INFO = "INFO",
// Warning level
WARNING = "WARNING",
// Error level
ERROR = "ERROR",
}