sidekick-docker 0.2.1 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/dist/sidekick-docker.mjs +520 -214
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -83,6 +83,8 @@ The dashboard has 5 panels, each mapped to a number key:
|
|
|
83
83
|
| `x` | Open context menu (actions for selected item) |
|
|
84
84
|
| `f` | Open log filter (when on Logs tab) |
|
|
85
85
|
| `/` | Open filter |
|
|
86
|
+
| `m` | Pin/unpin item for log comparison (Containers/Services) |
|
|
87
|
+
| `J` / `K` | Scroll compare pane (when in detail focus) |
|
|
86
88
|
| `z` | Toggle expanded layout |
|
|
87
89
|
| `?` | Show help overlay |
|
|
88
90
|
| `V` | Show version |
|
|
@@ -97,6 +99,7 @@ The dashboard has 5 panels, each mapped to a number key:
|
|
|
97
99
|
| `r` | Restart |
|
|
98
100
|
| `R` | Remove (with confirmation) |
|
|
99
101
|
| `e` | Exec into container |
|
|
102
|
+
| `c` | Copy logs to clipboard |
|
|
100
103
|
|
|
101
104
|
### Compose Actions (via context menu)
|
|
102
105
|
|
|
@@ -106,10 +109,12 @@ The dashboard has 5 panels, each mapped to a number key:
|
|
|
106
109
|
| `d` | Down (stop project) |
|
|
107
110
|
| `r` | Restart |
|
|
108
111
|
| `S` | Stop |
|
|
112
|
+
| `c` | Copy logs to clipboard |
|
|
109
113
|
|
|
110
114
|
## Features
|
|
111
115
|
|
|
112
116
|
- **Real-time log streaming** — follows container logs with token-level syntax highlighting (HTTP methods, status codes, URLs, IPs, timestamps, JSON keys)
|
|
117
|
+
- **Dual-log compare** — pin a second container or service with `m` to view both log streams side by side
|
|
113
118
|
- **Log search & filter** — press `f` on the Logs tab to search within log output with exact or fuzzy matching and match highlighting
|
|
114
119
|
- **Log analytics** — severity count badges, severity sparkline over time, and pattern clustering that groups similar logs into templates with `<*>` wildcards
|
|
115
120
|
- **Live stats with sparklines** — CPU, memory, network I/O, block I/O, and log severity charted as inline sparklines (60-sample history)
|