summaryrefslogtreecommitdiff
path: root/internal/tui/dashboard/tabs.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-25 09:23:19 +0200
committerPaul Buetow <paul@buetow.org>2026-02-25 09:23:19 +0200
commit1279ffb8f2efba54ff005cce91ba65c149cb1ee6 (patch)
tree102483e8d836501b3b935e0674d6608fbe9f4f1f /internal/tui/dashboard/tabs.go
parentb3625cc67c81b4c1bd654a9fcdaf624d76306b07 (diff)
Improve TUI layout and increase sparkline height
Diffstat (limited to 'internal/tui/dashboard/tabs.go')
-rw-r--r--internal/tui/dashboard/tabs.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/internal/tui/dashboard/tabs.go b/internal/tui/dashboard/tabs.go
index 9aae218..a2fe366 100644
--- a/internal/tui/dashboard/tabs.go
+++ b/internal/tui/dashboard/tabs.go
@@ -22,8 +22,6 @@ const (
TabProcesses
// TabLatency is the latency histogram tab.
TabLatency
- // TabGaps is the inter-syscall gap tab.
- TabGaps
// TabStream is the live event stream tab.
TabStream
)
@@ -34,7 +32,6 @@ var allTabs = []Tab{
TabFiles,
TabProcesses,
TabLatency,
- TabGaps,
TabStream,
}
@@ -49,9 +46,7 @@ func (t Tab) String() string {
case TabProcesses:
return "Processes"
case TabLatency:
- return "Latency"
- case TabGaps:
- return "Gaps"
+ return "Latency+Gaps"
case TabStream:
return "Stream"
default: