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
Log sources are auto-discovered in this order: running containers, `AWF_LOGS_DIR` environment variable, then preserved log directories in `/tmp/squid-logs-*`.
233
233
:::
234
234
235
+
### `awf logs stats`
236
+
237
+
Show aggregated statistics from firewall logs.
238
+
239
+
```bash
240
+
awf logs stats [options]
241
+
```
242
+
243
+
:::note[stats vs summary]
244
+
Use `awf logs stats` for terminal output (defaults to colorized `pretty` format). Use `awf logs summary` for CI/CD integration (defaults to `markdown` format for `$GITHUB_STEP_SUMMARY`). Both commands provide the same data in different default formats.
Copy file name to clipboardExpand all lines: docs/github_actions.md
+73Lines changed: 73 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,79 @@ If you currently have manual Squid proxy configuration, you can replace it with
87
87
'copilot --prompt "..."'
88
88
```
89
89
90
+
## Generating Firewall Summaries
91
+
92
+
The `awf logs summary` command generates markdown output optimized for GitHub Actions step summaries, eliminating the need for manual log parsing scripts.
0 commit comments