forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathembed_python.go
46 lines (38 loc) · 1.42 KB
/
embed_python.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016-present Datadog, Inc.
//go:build python
package collector
import (
"github.com/DataDog/datadog-agent/pkg/collector/python"
pkgconfigsetup "github.com/DataDog/datadog-agent/pkg/config/setup"
"github.com/DataDog/datadog-agent/pkg/util/log"
)
// InitPython sets up the Python environment
func InitPython(paths ...string) {
pyVer, pyHome, pyPath := pySetup(paths...)
// print the Python info if the interpreter was embedded
if pyVer != "" {
log.Infof("Embedding Python %s", pyVer)
log.Debugf("Python Home: %s", pyHome)
log.Debugf("Python path: %s", pyPath)
}
// Prepare python environment if necessary
if err := pyPrepareEnv(); err != nil {
log.Errorf("Unable to perform additional configuration of the python environment: %v", err)
}
}
func pySetup(paths ...string) (pythonVersion, pythonHome, pythonPath string) {
if err := python.Initialize(paths...); err != nil {
log.Errorf("Could not initialize Python: %s", err)
}
return python.PythonVersion, python.PythonHome, python.PythonPath
}
func pyPrepareEnv() error {
if pkgconfigsetup.Datadog().IsSet("procfs_path") {
procfsPath := pkgconfigsetup.Datadog().GetString("procfs_path")
return python.SetPythonPsutilProcPath(procfsPath)
}
return nil
}