2016-01-27 06:22:25 +00:00
|
|
|
package fingerprint
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2018-01-26 19:31:37 +00:00
|
|
|
|
2018-09-16 00:48:59 +00:00
|
|
|
log "github.com/hashicorp/go-hclog"
|
2018-01-26 19:31:37 +00:00
|
|
|
cstructs "github.com/hashicorp/nomad/client/structs"
|
2016-01-27 06:22:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
cgroupUnavailable = "unavailable"
|
2016-01-29 13:34:29 +00:00
|
|
|
interval = 15
|
2016-01-27 06:22:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type CGroupFingerprint struct {
|
2018-09-16 00:48:59 +00:00
|
|
|
logger log.Logger
|
2016-01-27 06:22:25 +00:00
|
|
|
lastState string
|
|
|
|
mountPointDetector MountPointDetector
|
|
|
|
}
|
|
|
|
|
|
|
|
// An interface to isolate calls to the cgroup library
|
|
|
|
// This facilitates testing where we can implement
|
2016-01-27 06:36:58 +00:00
|
|
|
// fake mount points to test various code paths
|
2016-01-27 06:22:25 +00:00
|
|
|
type MountPointDetector interface {
|
|
|
|
MountPoint() (string, error)
|
|
|
|
}
|
|
|
|
|
2016-01-27 06:36:58 +00:00
|
|
|
// Implements the interface detector which calls the cgroups library directly
|
2016-01-27 06:22:25 +00:00
|
|
|
type DefaultMountPointDetector struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call out to the default cgroup library
|
|
|
|
func (b *DefaultMountPointDetector) MountPoint() (string, error) {
|
|
|
|
return FindCgroupMountpointDir()
|
|
|
|
}
|
|
|
|
|
2016-01-29 13:34:29 +00:00
|
|
|
// NewCGroupFingerprint returns a new cgroup fingerprinter
|
2018-09-16 00:48:59 +00:00
|
|
|
func NewCGroupFingerprint(logger log.Logger) Fingerprint {
|
2016-01-27 06:22:25 +00:00
|
|
|
f := &CGroupFingerprint{
|
2018-09-16 00:48:59 +00:00
|
|
|
logger: logger.Named("cgroup"),
|
2016-01-27 06:22:25 +00:00
|
|
|
lastState: cgroupUnavailable,
|
|
|
|
mountPointDetector: &DefaultMountPointDetector{},
|
|
|
|
}
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2018-01-26 19:31:37 +00:00
|
|
|
// clearCGroupAttributes clears any node attributes related to cgroups that might
|
|
|
|
// have been set in a previous fingerprint run.
|
|
|
|
func (f *CGroupFingerprint) clearCGroupAttributes(r *cstructs.FingerprintResponse) {
|
|
|
|
r.RemoveAttribute("unique.cgroup.mountpoint")
|
|
|
|
}
|
|
|
|
|
2016-01-29 13:34:29 +00:00
|
|
|
// Periodic determines the interval at which the periodic fingerprinter will run.
|
2016-01-27 06:22:25 +00:00
|
|
|
func (f *CGroupFingerprint) Periodic() (bool, time.Duration) {
|
2016-01-29 13:34:29 +00:00
|
|
|
return true, interval * time.Second
|
2016-01-27 06:22:25 +00:00
|
|
|
}
|