add more env keys

pull/1439/head
Antoine Toulme 2 years ago
parent 177e1b1982
commit 35657e3262

@ -6,7 +6,7 @@ type EnvKeyType string
// gopsutil relies on to perform calls against the OS. // gopsutil relies on to perform calls against the OS.
// Example of use: // Example of use:
// //
// ctx := context.WithValue(context.Background(), common.EnvKey, EnvMap{"HOST_PROC": "/myproc"}) // ctx := context.WithValue(context.Background(), common.EnvKey, EnvMap{common.HostProcEnvKey: "/myproc"})
// avg, err := load.AvgWithContext(ctx) // avg, err := load.AvgWithContext(ctx)
var EnvKey = EnvKeyType("env") var EnvKey = EnvKeyType("env")
@ -14,6 +14,10 @@ const (
HostProcEnvKey EnvKeyType = "HOST_PROC" HostProcEnvKey EnvKeyType = "HOST_PROC"
HostSysEnvKey EnvKeyType = "HOST_SYS" HostSysEnvKey EnvKeyType = "HOST_SYS"
HostEtcEnvKey EnvKeyType = "HOST_ETC" HostEtcEnvKey EnvKeyType = "HOST_ETC"
HostVarEnvKey EnvKeyType = "HOST_VAR"
HostRunEnvKey EnvKeyType = "HOST_RUN"
HostDevEnvKey EnvKeyType = "HOST_DEV"
HostRootEnvKey EnvKeyType = "HOST_ROOT"
) )
type EnvMap map[EnvKeyType]string type EnvMap map[EnvKeyType]string

Loading…
Cancel
Save