You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/cli/logs_command.go
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -57,8 +57,8 @@ Examples:
57
57
# Date filtering
58
58
`+string(constants.CLIExtensionPrefix) +` logs --start-date 2024-01-01 # Download all runs after date
59
59
`+string(constants.CLIExtensionPrefix) +` logs --end-date 2024-01-31 # Download all runs before date
60
-
`+string(constants.CLIExtensionPrefix) +` logs --start-date -1w # Download all runs from last week
61
-
`+string(constants.CLIExtensionPrefix) +` logs --start-date -1w -c 5 # Download all runs from last week, show up to 5
60
+
`+string(constants.CLIExtensionPrefix) +` logs --start-date -1w # Download up to 10 runs from last week
61
+
`+string(constants.CLIExtensionPrefix) +` logs --start-date -1w -c 5 # Download up to 5 runs from last week
62
62
`+string(constants.CLIExtensionPrefix) +` logs --end-date -1d # Download all runs until yesterday
63
63
`+string(constants.CLIExtensionPrefix) +` logs --start-date -1mo # Download all runs from last month
64
64
@@ -208,7 +208,7 @@ Examples:
208
208
addJSONFlag(logsCmd)
209
209
logsCmd.Flags().Int("timeout", 0, "Download timeout in minutes (0 = no timeout)")
210
210
logsCmd.Flags().String("summary-file", "summary.json", "Path to write the summary JSON file relative to output directory (use empty string to disable)")
211
-
logsCmd.Flags().Bool("train", false, "Train drain3 log template weights from downloaded runs and write drain3_weights.json to the output directory")
211
+
logsCmd.Flags().Bool("train", false, "Train Drain3 (log template mining) weights from downloaded runs and write drain3_weights.json to the output directory")
212
212
logsCmd.Flags().String("format", "", "Output format for cross-run audit report: markdown, pretty (generates security audit report instead of default metrics table)")
213
213
logsCmd.Flags().Int("last", 0, "Alias for --count: number of recent runs to download")
`+string(constants.CLIExtensionPrefix) +` trial githubnext/agentics/my-workflow --host-repo myorg/myrepo # Run directly in myorg/myrepo (no simulation)
33
+
`+string(constants.CLIExtensionPrefix) +` trial githubnext/agentics/my-workflow --host-repo myorg/myrepo # Use myorg/myrepo as host for trial execution
0 commit comments