diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-25 08:43:15 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-25 08:43:15 +0200 |
| commit | d423225771a10ebae87d22c69fe88e5b65a3d378 (patch) | |
| tree | 9f701073be1e53ff06d89eb7c55f5b58b8aba1d3 /internal/tui/dashboard/tabs.go | |
| parent | 1a6e71ac31353167ec4c614d45e8e06de411a8f9 (diff) | |
Integrate Stream tab into dashboard and TUI
Diffstat (limited to 'internal/tui/dashboard/tabs.go')
| -rw-r--r-- | internal/tui/dashboard/tabs.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/tui/dashboard/tabs.go b/internal/tui/dashboard/tabs.go index 799e9f1..9aae218 100644 --- a/internal/tui/dashboard/tabs.go +++ b/internal/tui/dashboard/tabs.go @@ -24,6 +24,8 @@ const ( TabLatency // TabGaps is the inter-syscall gap tab. TabGaps + // TabStream is the live event stream tab. + TabStream ) var allTabs = []Tab{ @@ -33,6 +35,7 @@ var allTabs = []Tab{ TabProcesses, TabLatency, TabGaps, + TabStream, } func (t Tab) String() string { @@ -49,6 +52,8 @@ func (t Tab) String() string { return "Latency" case TabGaps: return "Gaps" + case TabStream: + return "Stream" default: return "Unknown" } |
