Files
troubleshoot/pkg/collect/host_cgroup_others.go
Evans Mungai 01d5804977 feat: cgroups host collector (#1581)
Linux control groups host collector that detects whether the specified mountPoint is a cgroup filesystem and what version it is. The collector also collects information of the configured cgroup controllers.

Signed-off-by: Evans Mungai <evans@replicated.com>
2024-07-24 16:46:04 +01:00

12 lines
209 B
Go

//go:build !linux
package collect
import (
"fmt"
)
func discoverConfiguration(_ string) (cgroupsResult, error) {
return cgroupsResult{}, fmt.Errorf("Discovery of cgroups not inimplemented for this OS")
}