/  Yamcs HTTP API  /  Timeline  /  Add Item Log

Add Item LogΒΆ

add an entry to the item log table The timestamp from the messages is used if specified; if not specified, the current mission time will be used

URI Template

POST /api/timeline/{instance}/items/{id}/log
{instance}

Yamcs instance name

{id}

Item identifier

Response Type

interface LogEntry {
  time: string;  // RFC 3339 timestamp
  user: string;
  type: string;
  msg: string;
}