Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Point to the right cgroup root dir on Amazon Linux #880

Merged
merged 5 commits into from
Nov 30, 2017
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,12 @@ func init() {

} else {
Datadog.SetDefault("container_proc_root", "/proc")
Datadog.SetDefault("container_cgroup_root", "/sys/fs/cgroup/")
// for amazon linux the cgroup directory on host is /cgroup/
if _, err := os.Stat("/cgroup/"); err == nil {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's be more specific on the Stat and make sure we don't have an empty folder. We could look for /cgroup/memory/memory.stat for example

Datadog.SetDefault("container_cgroup_root", "/cgroup/")
} else {
Datadog.SetDefault("container_cgroup_root", "/sys/fs/cgroup/")
}
}
Datadog.SetDefault("proc_root", "/proc")
Datadog.SetDefault("histogram_aggregates", []string{"max", "median", "avg", "count"})
Expand Down