-
Notifications
You must be signed in to change notification settings - Fork 0
Add --data flag to execution view #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Hinne1
wants to merge
2
commits into
main
Choose a base branch
from
claude/execution-view-data
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -181,7 +181,9 @@ func newListCmd() *cobra.Command { | |
| } | ||
|
|
||
| func newViewCmd() *cobra.Command { | ||
| return &cobra.Command{ | ||
| var showData bool | ||
|
|
||
| cmd := &cobra.Command{ | ||
| Use: "view <execution-id>", | ||
| Short: "View execution details", | ||
| Args: cobra.ExactArgs(1), | ||
|
|
@@ -191,7 +193,7 @@ func newViewCmd() *cobra.Command { | |
| return err | ||
| } | ||
|
|
||
| exec, err := client.GetExecution(args[0]) | ||
| exec, err := client.GetExecution(args[0], showData) | ||
| if err != nil { | ||
| return fmt.Errorf("failed to get execution: %w", err) | ||
| } | ||
|
|
@@ -240,9 +242,106 @@ func newViewCmd() *cobra.Command { | |
| fmt.Printf("\nError: %s\n", exec.Error) | ||
| } | ||
|
|
||
| if showData && exec.Data != nil { | ||
| printNodeData(exec.Data) | ||
| } | ||
|
|
||
| return nil | ||
| }, | ||
| } | ||
|
|
||
| cmd.Flags().BoolVar(&showData, "data", false, "Include per-node execution data") | ||
|
|
||
| return cmd | ||
| } | ||
|
|
||
| func printNodeData(data map[string]interface{}) { | ||
| resultData, ok := data["resultData"].(map[string]interface{}) | ||
| if !ok { | ||
| return | ||
| } | ||
| runData, ok := resultData["runData"].(map[string]interface{}) | ||
| if !ok { | ||
| return | ||
| } | ||
|
|
||
| fmt.Printf("\nNode Execution Data:\n") | ||
| fmt.Printf("────────────────────\n") | ||
|
|
||
| for nodeName, nodeRuns := range runData { | ||
| runs, ok := nodeRuns.([]interface{}) | ||
| if !ok || len(runs) == 0 { | ||
| continue | ||
| } | ||
|
|
||
| // Use the last run entry for this node | ||
| run, ok := runs[len(runs)-1].(map[string]interface{}) | ||
| if !ok { | ||
| continue | ||
| } | ||
|
|
||
| // Determine status | ||
| nodeStatus := "success" | ||
| if _, hasError := run["error"]; hasError { | ||
| nodeStatus = "error" | ||
| } | ||
|
|
||
| // Get execution time | ||
| execTimeMs := "" | ||
| if et, ok := run["executionTime"].(float64); ok { | ||
| execTimeMs = fmt.Sprintf("%dms", int(et)) | ||
| } | ||
|
|
||
| // Count input/output items | ||
| inputItems, outputItems := countItems(run) | ||
|
|
||
| fmt.Printf("\n %s\n", nodeName) | ||
| fmt.Printf(" Status: %s\n", nodeStatus) | ||
| if inputItems >= 0 || outputItems >= 0 { | ||
| parts := []string{} | ||
| if inputItems >= 0 { | ||
| parts = append(parts, fmt.Sprintf("%d input", inputItems)) | ||
| } | ||
| if outputItems >= 0 { | ||
| parts = append(parts, fmt.Sprintf("%d output", outputItems)) | ||
| } | ||
| fmt.Printf(" Items: %s\n", strings.Join(parts, ", ")) | ||
| } | ||
| if execTimeMs != "" { | ||
| fmt.Printf(" Time: %s\n", execTimeMs) | ||
| } | ||
| } | ||
| } | ||
|
|
||
| func countItems(run map[string]interface{}) (input, output int) { | ||
| input = -1 | ||
| output = -1 | ||
|
|
||
| // Input items from inputData | ||
| if inputData, ok := run["inputData"].(map[string]interface{}); ok { | ||
| if main, ok := inputData["main"].([]interface{}); ok { | ||
| input = 0 | ||
| for _, branch := range main { | ||
| if items, ok := branch.([]interface{}); ok { | ||
| input += len(items) | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| // Output items from data.main | ||
| if data, ok := run["data"].(map[string]interface{}); ok { | ||
| if main, ok := data["main"].([]interface{}); ok { | ||
| output = 0 | ||
| for _, branch := range main { | ||
| if items, ok := branch.([]interface{}); ok { | ||
| output += len(items) | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| return | ||
|
Comment on lines
+317
to
+344
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The input = -1
output = -1
countBranchItems := func(main []interface{}) int {
count := 0
for _, branch := range main {
if items, ok := branch.([]interface{}); ok {
count += len(items)
}
}
return count
}
// Input items from inputData
if inputData, ok := run["inputData"].(map[string]interface{}); ok {
if main, ok := inputData["main"].([]interface{}); ok {
input = countBranchItems(main)
}
}
// Output items from data.main
if data, ok := run["data"].(map[string]interface{}); ok {
if main, ok := data["main"].([]interface{}); ok {
output = countBranchItems(main)
}
}
return |
||
| } | ||
|
|
||
| func newRetryCmd() *cobra.Command { | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The iteration order for maps in Go is not guaranteed. To ensure a consistent and deterministic output for the nodes, it's best to sort the node names alphabetically before iterating and printing the data.
You'll need to import the
sortpackage for this.