Files
go_process_manager/internal/app/eum/event.go
2025-08-29 16:25:43 +08:00

12 lines
280 B
Go

package eum
type EventType string
const (
EventProcessStart EventType = "ProcessStart"
EventProcessStop EventType = "ProcessStop"
EventProcessWarning EventType = "ProcessWarning"
EventTaskStart EventType = "TaskStart"
EventTaskStop EventType = "TaskStop"
)