forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
containers.go
55 lines (45 loc) · 1.39 KB
/
containers.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
47
48
49
50
51
52
53
54
55
// 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
// +build python
package python
import (
"github.com/DataDog/datadog-agent/pkg/util/log"
"github.com/DataDog/datadog-agent/pkg/util/containers"
)
/*
#include <datadog_agent_rtloader.h>
#cgo !windows LDFLAGS: -ldatadog-agent-rtloader -ldl
#cgo windows LDFLAGS: -ldatadog-agent-rtloader -lstdc++ -static
*/
import "C"
var filter *containers.Filter
// IsContainerExcluded returns whether a container should be excluded,
// based on it's name, image name and namespace. Exclusion patterns are configured
// via the global options (ac_include/ac_exclude/exclude_pause_container)
//export IsContainerExcluded
func IsContainerExcluded(name, image, namespace *C.char) C.int {
// If init failed, fallback to False
if filter == nil {
return 0
}
goName := C.GoString(name)
goImg := C.GoString(image)
goNs := ""
if namespace != nil {
goNs = C.GoString(namespace)
}
if filter.IsExcluded(goName, goImg, goNs) {
return 1
}
return 0
}
// Separated to unit testing
func initContainerFilter() {
var err error
if filter, err = containers.GetSharedMetricFilter(); err != nil {
log.Errorf("Error initializing container filtering: %s", err)
}
}