Skip to content

Commit

Permalink
feat: a bit more stats
Browse files Browse the repository at this point in the history
Signed-off-by: Yves Bastide <yves@botify.com>
  • Loading branch information
ybastide committed Dec 5, 2024
1 parent 7133493 commit 2b27da4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions simpleflow/swf/stats/pretty.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,6 @@ def list_details(
"Workflow Version",
"Run ID",
"Status",
"Task List",
"Child Policy",
"Close Status",
"Start Timestamp",
Expand All @@ -248,6 +247,9 @@ def list_details(
"Input",
"Tags",
"Decision Tasks Timeout",
"Parent Workflow ID",
"Parent Run ID",
"Cancel Requested",
)
rows = [
(
Expand All @@ -256,7 +258,6 @@ def list_details(
execution.workflow_type.version,
execution.run_id,
execution.status,
execution.task_list,
execution.child_policy,
execution.close_status,
execution.start_timestamp,
Expand All @@ -266,6 +267,9 @@ def list_details(
execution.input,
execution.tag_list,
execution.decision_tasks_timeout,
execution.parent.get("workflowId"),
execution.parent.get("runId"),
execution.cancel_requested,
)
for execution in workflow_executions
]
Expand Down

0 comments on commit 2b27da4

Please sign in to comment.