Documentation
¶
Index ¶
- Variables
- type Baseline
- type Finding
- type FindingType
- type Scanner
- func (s *Scanner) ScanAll(procs []system.ProcessInfo, gpuProcs []system.GPUProcess) []Finding
- func (s *Scanner) ScanDaemons(procs []system.ProcessInfo) []Finding
- func (s *Scanner) ScanGPUShadows(procs []system.ProcessInfo, gpuProcs []system.GPUProcess) []Finding
- func (s *Scanner) ScanKernelThreads(procs []system.ProcessInfo) []Finding
- func (s *Scanner) ScanMemoryLeaks(procs []system.ProcessInfo, history map[int][]uint64) []Finding
- func (s *Scanner) ScanOrphans(procs []system.ProcessInfo) []Finding
- func (s *Scanner) ScanZombies(procs []system.ProcessInfo) []Finding
- type Severity
Constants ¶
This section is empty.
Variables ¶
View Source
var KnownGoodProcesses = map[string]string{}/* 273 elements not displayed */
Functions ¶
This section is empty.
Types ¶
type Baseline ¶
func NewBaseline ¶
func NewBaseline() *Baseline
func (*Baseline) BuildFromCurrent ¶
func (b *Baseline) BuildFromCurrent(procs []system.ProcessInfo)
type FindingType ¶
type FindingType string
const ( FindingZombie FindingType = "zombie" FindingOrphan FindingType = "orphan" FindingDaemon FindingType = "daemon" FindingKernelThread FindingType = "kthread" FindingGPUShadow FindingType = "gpushadow" FindingMemoryLeak FindingType = "memleak" FindingUnknownSvc FindingType = "unknown" )
type Scanner ¶
type Scanner struct {
// contains filtered or unexported fields
}
func NewScanner ¶
func (*Scanner) ScanAll ¶
func (s *Scanner) ScanAll( procs []system.ProcessInfo, gpuProcs []system.GPUProcess, ) []Finding
func (*Scanner) ScanDaemons ¶
func (s *Scanner) ScanDaemons(procs []system.ProcessInfo) []Finding
func (*Scanner) ScanGPUShadows ¶
func (s *Scanner) ScanGPUShadows( procs []system.ProcessInfo, gpuProcs []system.GPUProcess, ) []Finding
func (*Scanner) ScanKernelThreads ¶
func (s *Scanner) ScanKernelThreads(procs []system.ProcessInfo) []Finding
func (*Scanner) ScanMemoryLeaks ¶
func (*Scanner) ScanOrphans ¶
func (s *Scanner) ScanOrphans(procs []system.ProcessInfo) []Finding
func (*Scanner) ScanZombies ¶
func (s *Scanner) ScanZombies(procs []system.ProcessInfo) []Finding
Click to show internal directories.
Click to hide internal directories.