- yamcs
- yamcs alarms
- yamcs algorithms
- yamcs commands
- yamcs config
- yamcs containers
- yamcs dbshell
- yamcs events
- yamcs instances
- yamcs links
- yamcs login
- yamcs logout
- yamcs packets
- yamcs parameter-archive
- yamcs parameters
- yamcs processors
- yamcs rocksdb
- yamcs services
- yamcs space-systems
- yamcs storage
- yamcs streams
- yamcs tables
yamcs commands¶
Synopsis¶
Description¶
Manage commands.
Commands¶
- list
List commands
- describe <COMMAND>
Describe a command
- run <COMMAND>
Run a command
- log [-n <LINES>, --lines <LINES>] [-s <DATE>, --since <DATE>] [-u <DATE>, --until <DATE>]
Read command log
Options¶
- --processor <PROCESSOR>¶
With
run
, specifies the name of the target processor.Default is
realtime
.
- --dry-run¶
With
run
, validate the command, but do not queue it.
- --arg-file <FILE>¶
With
run
, read command arguments from a file
- --arg <KEY=VALUE> [KEY=VALUE ...]¶
With
run
, set command arguments.
- --sequence-number <SEQNO>¶
With
run
, set the sequence number of this command. This is used to determine unicity of commands at the same time and coming from the same origin. If not set Yamcs will automatically assign a sequential number as if every submitted command is unique.
- -n <LINES>, --lines <LINES>¶
With
log
, specify the number of commands to show, orall
to show all.Default: 10, but only when
--since
and--until
are unset.
- -s <DATE>, --since <DATE>¶
With
log
, include commands not older than the specified date.The date should be specified in ISO format or as detailed under Timestamps.
- -u <DATE>, --until <DATE>¶
With
log
, include commands not newer than the specified date.The date should be specified in ISO format or as detailed under Timestamps.
Timestamps¶
When parsing timestamps, yamcs-cli accepts a specification in ISO format. The following special patterns are also recognised:
now
: current timenow UTC
: current UTC timetoday
: 00:00:00 of the current daytoday UTC
: 00:00:00 UTC of the current dayyesterday
: 00:00:00 of the day beforeyesterday UTC
: 00:00:00 UTC of the day beforetomorrow
: 00:00:00 of the next daytomorrow UTC
: 00:00:00 UTC of the next day