/  Yamcs HTTP API  /  Activities  /  Get Activity Log

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",
}