sidekick-docker 0.1.1 → 0.1.2
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 +6 -3
- package/dist/sidekick-docker.mjs +797 -89
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ The dashboard has 5 panels, each mapped to a number key:
|
|
|
47
47
|
|
|
48
48
|
| # | Panel | Shows | Detail Tabs |
|
|
49
49
|
|---|-------|-------|-------------|
|
|
50
|
-
| 1 | **Containers** | All containers with state, image, ports, uptime | Logs, Stats, Env, Config |
|
|
50
|
+
| 1 | **Containers** | All containers with state, image, ports, uptime | Logs, Stats, Env, Config, Patterns |
|
|
51
51
|
| 2 | **Services** | Compose projects and their services | Info, Logs |
|
|
52
52
|
| 3 | **Images** | Local images with tags, size, age | Info |
|
|
53
53
|
| 4 | **Volumes** | Named volumes with driver, mount path, usage status | Info |
|
|
@@ -80,6 +80,7 @@ The dashboard has 5 panels, each mapped to a number key:
|
|
|
80
80
|
| Key | Action |
|
|
81
81
|
|-----|--------|
|
|
82
82
|
| `x` | Open context menu (actions for selected item) |
|
|
83
|
+
| `f` | Open log filter (when on Logs tab) |
|
|
83
84
|
| `/` | Open filter |
|
|
84
85
|
| `z` | Toggle expanded layout |
|
|
85
86
|
| `?` | Show help overlay |
|
|
@@ -107,8 +108,10 @@ The dashboard has 5 panels, each mapped to a number key:
|
|
|
107
108
|
|
|
108
109
|
## Features
|
|
109
110
|
|
|
110
|
-
- **Real-time log streaming** — follows container logs with
|
|
111
|
-
- **
|
|
111
|
+
- **Real-time log streaming** — follows container logs with token-level syntax highlighting (HTTP methods, status codes, URLs, IPs, timestamps, JSON keys)
|
|
112
|
+
- **Log search & filter** — press `f` on the Logs tab to search within log output with exact or fuzzy matching and match highlighting
|
|
113
|
+
- **Log analytics** — severity count badges, severity sparkline over time, and pattern clustering that groups similar logs into templates with `<*>` wildcards
|
|
114
|
+
- **Live stats with sparklines** — CPU, memory, and log severity usage charted as inline sparklines (60-sample history)
|
|
112
115
|
- **Interactive exec** — open a shell inside any running container
|
|
113
116
|
- **Compose detection** — automatically discovers projects from container labels, merges with compose file config
|
|
114
117
|
- **Filter** — press `/` to filter any list by name
|