- 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
Yamcs Release Notes
Yamcs Server Manual
Source Code Documentation
Start ActivityΒΆ
Start an activity
The request body allows for the execution of arbitrary activities. The following activity types are included in the core Yamcs module:
Command
Execute a single command
type
(string)Set to
COMMAND
.args
(map)Map accepting the following options:
command
Required. Qualified name of a command
args
(map)Named arguments, if the command requires any
extra
(map)Extra command options
processor
(string)Optional processor name. If not provided, Yamcs defaults to any processor it can find with commanding enabled.
Example:
{
"type": "COMMAND",
"args": {
"command": "/YSS/SIMULATOR/SWITCH_VOLTAGE_ON",
"args": {
"voltage_num": 3
},
"processor": "realtime"
}
}
Command Stack
Execute a command stack
type
(string)Set to
COMMAND_STACK
.args
(map)Map accepting the following options:
bucket
Required. The name of the bucket containg the stack
stack
Required. The name of the stack object inside the bucket
processor
(string)Optional processor name. If not provided, Yamcs defaults to any processor it can find with commanding enabled.
Example:
{
"type": "COMMAND_STACK",
"args": {
"bucket": "mybucket",
"stack": "mystack.ycs",
"processor": "realtime"
}
}
Script
Run a script
type
(string)Set to
SCRIPT
.args
(map)Map accepting the following options:
script
Required. Script identifier.
This should be the relative path to an executable file in one of the search locations. When unconfigured, the default search location is
etc/scripts/
relative to the Yamcs working directory.args
(string or string[])Script arguments
processor
(string)If provided, this information is passed to the script in an environment variable
YAMCS_PROCESSOR
.
Example:
{
"type": "SCRIPT",
"args": {
"script": "simulate_los.py",
"args": "--duration 60",
"processor": "realtime"
}
}
URI Template
POST /api/activities/{instance}/activities
{instance}
Yamcs instance name
Request Body
interface ActivityDefinitionInfo {
// Activity type.
// Common types: MANUAL, SCRIPT, COMMAND, COMMAND_STACK
type: string;
// Activity arguments. The expected arguments
// are different for each activity type
args: {[key: string]: any};
// Optional comment
comment: string;
}
Response Type
interface ActivityInfo {
// Activity identifier
id: string;
// Start time of the activity
start: string; // RFC 3339 timestamp
// Differentiator in case of multiple activities
// with the same start time
seq: number;
// Activity status
status: ActivityStatus;
// User who started the run
startedBy: string;
// Activity type
type: string;
// Activity arguments
args: {[key: string]: any};
// Activity detail (short descriptive)
detail: string;
// Stop time of the activity run
stop: string; // RFC 3339 timestamp
// User who stopped the run. Only set if the activity
// was manually stopped
stoppedBy: string;
// If set, the activity is stopped, but failed
failureReason: string;
}
Related Types
enum ActivityStatus {
// An activity is runing
RUNNING = "RUNNING",
// The activity was cancelled. It may or may not still be running
// (verify stop time).
CANCELLED = "CANCELLED",
// The activity completed successfully
SUCCESSFUL = "SUCCESSFUL",
// An error occurred while running this activity
FAILED = "FAILED",
}