| 1234567891011121314151617181920212223242526272829303132333435 |
- package enums
- import "time"
- const (
- DaemonProc = "euspace"
- DaemonCtlProc = "omniagent-ctl"
- ServerAgentProc = "omniagent-os"
- NpmAgentProc = "omniagent-net"
- DaemonServiceFile = "omniagent"
- CpuLimit = "omniagent-cpulimit"
- AgentNameEuspace = DaemonProc
- AgentNameOneAgent = "cw-oneagent"
- TestApp = "eBPF-APP"
- // windows
- DaemonCtlProcEXE = "omniagent-ctl.exe"
- ServerAgentProcEXE = "omniagent-os.exe"
- NpmAgentProcEXE = "omniagent-net.exe"
- DefaultInterval = 30
- DefaultFuseInterval = 10
- RootUser = 0
- DefaultTimeOut = time.Duration(10) * time.Minute
- DefaultLocalProxy = "http://127.0.0.1"
- DefaultLocalConfigPort = "18084"
- DefaultLocalDataPort = "18085"
- DefaultLocalFilePort = "18086"
- DefaultVpcKey = "identification"
- TimeoutNamedPipe3S = 3
- DefaultLogLevel = "error"
- DefaultNetDataInterval1Min = 1
- )
|