Files
go_process_manager/internal/app/eum/event.go
2025-12-07 01:08:26 +08:00

14 lines
376 B
Go

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