temporalio / cli

Command-line interface for running Temporal Server and interacting with Workflows, Activities, Namespaces, and other parts of Temporal
https://docs.temporal.io/cli
MIT License
241 stars 32 forks source link

[Feature Request] Provide more useful basic information in default output for `workflow show` command. #612

Open bergundy opened 6 days ago

bergundy commented 6 days ago

Some ideas:

  ID          Time                          Type                                                                Details
   1  2024-07-01T17:43:22Z  WorkflowExecutionStarted                            MyWorkflowType
   2  2024-07-01T17:43:22Z  WorkflowTaskScheduled                               MyTaskQueue?
   3  2024-07-01T17:43:34Z  WorkflowTaskStarted                                    ${schedule to start time}
   4  2024-07-01T17:43:34Z  WorkflowTaskCompleted                              ${processing time}
   5  2024-07-01T17:43:34Z  StartChildWorkflowExecutionInitiated         MyChildWorkflowType
   6  2024-07-01T17:43:34Z  ChildWorkflowExecutionStarted
   7  2024-07-01T17:43:34Z  WorkflowTaskScheduled
   8  2024-07-01T17:43:34Z  WorkflowTaskStarted
   9  2024-07-01T17:43:34Z  WorkflowTaskCompleted
  10  2024-07-01T17:46:48Z  ChildWorkflowExecutionCompleted           ${total time}
...