Yamcs Server Manual
- General Information
- Server Administration
- Mission Database
- Data Management
- Data Links
- Processors
- Commanding
- Services
- Security
- Web Interface
- Programs
Related
Yamcs Release Notes
Yamcs HTTP API
Source Code Documentation
Download this Document
EventsΒΆ
This table is created by the Event Recorder and uses the generation time, source and sequence number as primary key:
CREATE TABLE events(
gentime TIMESTAMP,
source ENUM,
seqNum INT,
body PROTOBUF('org.yamcs.protobuf.Yamcs$Event'),
PRIMARY KEY(
gentime,
source,
seqNum
)
) HISTOGRAM(source) partition by time(gentime) table_format=compressed;
Where the columns are:
- gentimethe generation time of the command set by the originator.
- sourcea string representing the source of the events.
- seqNuma sequence number provided by the event source. Each source is expected to keep an independent sequence count for the events it generates.