Skip to main content

signaloid-cli tasks get

Get details about a specific task.

Synopsis

signaloid-cli tasks get --task-id <id>

Options

OptionRequiredDescription
--task-id <id>YesTask ID
--format <type>NoOutput format: json|table (default: table)

Description

Retrieves complete details about a specific task, including its status, build ID, arguments, creation time, and completion time (if finished).

Examples

signaloid-cli tasks get --task-id tsk_ee8a0d71935642738c1721b73c776332

Output:

Task: tsk_ee8a0d71935642738c1721b73c776332

+---------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Owner | usr_1234567ad6641899387b6458cc9a2e2 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Started At | 1761822270612 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Build I D | bld_4fbc382b0add4e78a3fb49ffce1fbe07 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Updated At | 1761822271154 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Arguments | -j -V 3.5 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Status Transitions | [ |
| | |
| | "Message": "Task accepted" |
| | "Status": "Accepted: |
| | "Timestamp": 176182227 |
| | |
| | |
| | "Message": "StatusController: Set Task tsk_ee8a0d71935642738c1721b73c776332 status as 'Initializing' |
| | "Status": "Initialisi |
| | "Timestamp": 176182227 |
| | |
| | |
| | "Message": "StatusController: Set Task tsk_ee8a0d71935642738c1721b73c776332 status as 'In Progress' |
| | "Status": "In Progress" |
| | "Timestamp": 176182227 |
| | |
| | |
| | "Message": "StatusController: Set Task tsk_ee8a0d71935642738c1721b73c776332 status as 'Completed' |
| | "Status": "Completed" |
| | "Timestamp": 176182227 |
| | |
| | ] |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Finished At | 1761822271154 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Created At | 1761822270583 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Status | Completed |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Task I D | tsk_ee8a0d71935642738c1721b73c776332 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Data Sources | [] |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Is Public | Yes |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Stats | { |
| | "DynamicInstructions": 3598 |
| | "ProcessorTime": 0.0001200 |
| | "ExecutionTimeInMilliseconds": 4 |
| | } |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Small Output | N/A |
+---------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

Notes

  • Returns full task details including metadata and timestamps
  • Use this command to get comprehensive information about a task
  • For checking only status, use signaloid-cli tasks status which is lighter weight

See Also