operator

package
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 29, 2026 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func StartFileLocksMonitor added in v0.2.0

func StartFileLocksMonitor(ctx context.Context, objs *bpf.EGhostBusterObjects) error

func StartStaleSocketMonitor added in v0.2.0

func StartStaleSocketMonitor(ctx context.Context, objs *bpf.EGhostBusterObjects, cfg Config) error

StartMonitor periodically scans close_wait_tracker for stale sockets

Types

type Config

type Config struct {
	ScanInterval     time.Duration // How often to check the map
	CloseWaitTimeout time.Duration // How long before considering stale
}

func ParseConfig

func ParseConfig() Config

type ExitEvent added in v0.2.0

type ExitEvent struct {
	PID      uint32
	Filename string
}