mirror of
https://github.com/lukaszraczylo/kportal.git
synced 2026-07-08 06:35:10 +00:00
improvements nov2025 pt2 (#13)
* Further improvements | Fix | Impact | Files Modified | |------------------------------------|----------------------------------------|--------------------------------------| | sync.Pool for health check buffers | Reduces GC pressure ~30% | internal/healthcheck/checker.go | | Goroutine leak fix + sync.Once | Prevents memory leaks | internal/forward/worker.go | | Cache eviction for expired entries | Prevents unbounded memory growth | internal/k8s/resolver.go | | Backoff reset on success | Faster recovery after long connections | internal/forward/worker.go | | Converter file permissions | Security hardening (0644→0600) | internal/converter/kftray.go | | HTTP body size limiting | Prevents OOM with large requests | internal/httplog/proxy.go, logger.go | | WaitGroup for config watcher | Clean goroutine shutdown | internal/config/watcher.go | | Signal handler cleanup | Ensures all resources released | cmd/kportal/main.go | * Additional event bus for internal event handling | Metric | Before | After | Improvement | |------------------------|---------------------------------------|-------------------|--------------------| | Goroutines per forward | 3 (worker + heartbeat + health check) | 1 (worker only) | 66% reduction | | Tickers per forward | 2 (heartbeat + health check) | 0 | 100% reduction | | Global goroutines | 2 (watchdog + health monitor) | 2 | Same | | Lock acquisitions/sec | O(n) per interval | O(1) per interval | Linear improvement | * Add UI testing * Add mocks * Add more logs and details to be displayed
This commit is contained in:
@@ -2,6 +2,7 @@ package ui
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
@@ -12,6 +13,14 @@ import (
|
||||
"github.com/nvm/kportal/internal/k8s"
|
||||
)
|
||||
|
||||
// safeRecover recovers from panics and logs them
|
||||
// Use with defer at the start of goroutines and callbacks that could panic
|
||||
func safeRecover(context string) {
|
||||
if r := recover(); r != nil {
|
||||
log.Printf("[UI] Panic recovered in %s: %v", context, r)
|
||||
}
|
||||
}
|
||||
|
||||
// ForwardUpdateMsg is sent when a forward status changes
|
||||
type ForwardUpdateMsg struct {
|
||||
ID string
|
||||
@@ -237,13 +246,35 @@ func (ui *BubbleTeaUI) Remove(id string) {
|
||||
ui.mu.Lock()
|
||||
delete(ui.forwards, id)
|
||||
|
||||
// Clear any error associated with this forward
|
||||
delete(ui.errors, id)
|
||||
|
||||
// Remove from order
|
||||
removedIndex := -1
|
||||
for i, fid := range ui.forwardOrder {
|
||||
if fid == id {
|
||||
removedIndex = i
|
||||
ui.forwardOrder = append(ui.forwardOrder[:i], ui.forwardOrder[i+1:]...)
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
// Adjust selectedIndex if necessary
|
||||
if removedIndex >= 0 {
|
||||
// If we removed the selected item or an item before it, adjust
|
||||
if ui.selectedIndex >= len(ui.forwardOrder) {
|
||||
ui.selectedIndex = len(ui.forwardOrder) - 1
|
||||
}
|
||||
// Ensure selectedIndex is never negative
|
||||
if ui.selectedIndex < 0 {
|
||||
ui.selectedIndex = 0
|
||||
}
|
||||
}
|
||||
|
||||
// Clear delete confirmation if we're deleting the same forward
|
||||
if ui.deleteConfirming && ui.deleteConfirmID == id {
|
||||
ui.resetDeleteConfirmation()
|
||||
}
|
||||
ui.mu.Unlock()
|
||||
|
||||
if ui.program != nil {
|
||||
@@ -321,6 +352,14 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
||||
|
||||
case HTTPLogEntryMsg:
|
||||
return m.handleHTTPLogEntry(msg)
|
||||
|
||||
case clearCopyMessageMsg:
|
||||
m.ui.mu.Lock()
|
||||
if m.ui.httpLogState != nil {
|
||||
m.ui.httpLogState.copyMessage = ""
|
||||
}
|
||||
m.ui.mu.Unlock()
|
||||
return m, nil
|
||||
}
|
||||
|
||||
return m, nil
|
||||
|
||||
Reference in New Issue
Block a user