From 067ce6751e4d80aea4e2820980682eb77f925708 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 25 Sep 2025 12:48:50 -0400 Subject: [PATCH] tui/components: hint at the `-f` flag The `gonzo < application.log` hint is the same core functionality as the hint to "Pipe logs"'s `cat application.log | gonzo` command. Instead, hint that the `-f` flag exists, that it may be repeated, and it supports globs as mentioned in the README. --- internal/tui/components.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/components.go b/internal/tui/components.go index ad35019..88af97a 100644 --- a/internal/tui/components.go +++ b/internal/tui/components.go @@ -327,7 +327,7 @@ func (m *DashboardModel) renderLogScrollContent(height int, logWidth int) []stri "💡 To get started:", " • Pipe logs: cat mylog.json | gonzo", " • Stream logs: kubectl logs -f pod | gonzo", - " • From file: gonzo < application.log", + " • From file: gonzo -f application.log -f other.log -f 'dir/*.globlog'", "", }