Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/pkg/integrations/node_exporter/node_exporter_linux.go
5283 views
1
package node_exporter //nolint:golint
2
3
import (
4
"github.com/prometheus/procfs/sysfs"
5
)
6
7
func init() {
8
DefaultConfig.SysFSPath = sysfs.DefaultMountPoint
9
}
10
11