diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-14 22:05:08 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-14 22:05:08 +0300 |
| commit | f90a9e0063dbe4ca06c193aec7e7469a32e0b422 (patch) | |
| tree | 72124595231432f26aef9916ba0b8006d5dd8518 /internal/daemon | |
| parent | 91a42298f46ee659a951211d4c47f9096fe97b29 (diff) | |
Release 0.4.0: foo.zone HTML styling, uptime-stats section order, dashboard without full Kernel tables.HEADv0.4.0master
- Link foo.zone stylesheet and mirror header/heading/quote layout for HTML reports.
- Default -all stats order matches foo.zone (Host Uptime through Score, then KernelMajor and KernelName; full Kernel last when include-kernel).
- Daemon root HTML uses include-kernel=false like the public stats page.
- Refresh HTML integration fixtures.
Made-with: Cursor
Diffstat (limited to 'internal/daemon')
| -rw-r--r-- | internal/daemon/daemon.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/daemon/daemon.go b/internal/daemon/daemon.go index 63d80d4..e4f07f6 100644 --- a/internal/daemon/daemon.go +++ b/internal/daemon/daemon.go @@ -201,7 +201,7 @@ func root(statsDir string) http.HandlerFunc { Limit: 20, OutputFormat: goprecords.FormatHTML, All: true, - IncludeKernel: true, + IncludeKernel: false, } var buf bytes.Buffer if err := goprecords.WriteReports(&buf, aggregates, cfg); err != nil { |
