forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcmd-diff-logs.sh
More file actions
executable file
·93 lines (76 loc) · 2.99 KB
/
Copy pathcmd-diff-logs.sh
File metadata and controls
executable file
·93 lines (76 loc) · 2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/usr/bin/env bash
# showcase diff-logs — show log delta for a time window
CMD_DIFF_LOGS_DESC="Show log delta for a time window"
usage_diff_logs() {
cat <<'USAGE'
Usage: showcase diff-logs <slug> --since <time> [options]
Show container logs for a specific time window. Useful when running
tests repeatedly — see only logs from the last run, not the full
container lifetime.
Options:
--since <time> Start of window (required). Accepts:
Duration: 10m, 1h, 30s
Timestamp: 2024-01-15T10:30:00
Special: "last-test" (reads .last-test-ts marker)
--until <time> End of window (default: now)
--grep <pattern> Filter output (regex, e.g. "fixture|match")
Examples:
showcase diff-logs aimock --since 5m
showcase diff-logs mastra --since 10m --grep "error|warn"
showcase diff-logs aimock --since last-test
showcase diff-logs aimock --since 10:30:00 --until 10:35:00
USAGE
}
cmd_diff_logs() {
[[ "${1:-}" == "-h" || "${1:-}" == "--help" ]] && { usage_diff_logs; return 0; }
local slug=""
local since=""
local until_ts=""
local grep_pattern=""
# First positional arg is slug, rest are flags
slug="${1:-}"
need_slug "$slug"
shift
while [[ $# -gt 0 ]]; do
case "$1" in
--since) [[ -n "${2:-}" ]] || die "--since requires a value"; since="$2"; shift 2 ;;
--until) [[ -n "${2:-}" ]] || die "--until requires a value"; until_ts="$2"; shift 2 ;;
--grep) [[ -n "${2:-}" ]] || die "--grep requires a value"; grep_pattern="$2"; shift 2 ;;
-h|--help) usage_diff_logs; return 0 ;;
*) die "Unknown option: $1" ;;
esac
done
[[ -z "$since" ]] && die "--since is required"
# Handle --since last-test convenience
if [[ "$since" == "last-test" ]]; then
local ts_file="$SHOWCASE_ROOT/.last-test-ts"
if [[ -f "$ts_file" ]]; then
since=$(cat "$ts_file")
info "Using last test timestamp: $since"
else
warn "No .last-test-ts found, falling back to 5m"
since="5m"
fi
fi
local container
container=$(slug_to_container "$slug")
local docker_args=("--since" "$since")
[[ -n "$until_ts" ]] && docker_args+=("--until" "$until_ts")
local output
if [[ -n "$grep_pattern" ]]; then
output=$(docker logs "${docker_args[@]}" "$container" 2>&1 | grep --color=auto -E "$grep_pattern") || true
else
output=$(docker logs "${docker_args[@]}" "$container" 2>&1)
fi
local line_count
if [[ -z "$output" ]]; then
line_count=0
else
line_count=$(printf '%s\n' "$output" | wc -l | tr -d ' ')
fi
local window_desc="$since"
[[ -n "$until_ts" ]] && window_desc="${since} → ${until_ts}"
printf '═══ %s logs (%s, %d lines) ═══\n' "$container" "$window_desc" "$line_count"
[[ -n "$output" ]] && printf '%s\n' "$output"
echo "═══════════════════════════════════════════════════════════════"
}