61 lines
1.8 KiB
Go
61 lines
1.8 KiB
Go
package fingerprint
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/hashicorp/nomad/client/config"
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
)
|
|
|
|
// BuiltinFingerprints is a slice containing the key names of all regestered
|
|
// fingerprints available, to provided an ordered iteration
|
|
var BuiltinFingerprints = []string{
|
|
"arch",
|
|
"cpu",
|
|
"host",
|
|
"memory",
|
|
"storage",
|
|
"network_unix",
|
|
"env_aws",
|
|
}
|
|
|
|
// builtinFingerprintMap contains the built in registered fingerprints
|
|
// which are available, corresponding to a key found in BuiltinFingerprints
|
|
var builtinFingerprintMap = map[string]Factory{
|
|
"arch": NewArchFingerprint,
|
|
"cpu": NewCPUFingerprint,
|
|
"host": NewHostFingerprint,
|
|
"memory": NewMemoryFingerprint,
|
|
"storage": NewStorageFingerprint,
|
|
"network_unix": NewUnixNetworkFingerprinter,
|
|
"env_aws": NewEnvAWSFingerprint,
|
|
}
|
|
|
|
// NewFingerprint is used to instantiate and return a new fingerprint
|
|
// given the name and a logger
|
|
func NewFingerprint(name string, logger *log.Logger) (Fingerprint, error) {
|
|
// Lookup the factory function
|
|
factory, ok := builtinFingerprintMap[name]
|
|
if !ok {
|
|
return nil, fmt.Errorf("unknown fingerprint '%s'", name)
|
|
}
|
|
|
|
// Instantiate the fingerprint
|
|
f := factory(logger)
|
|
return f, nil
|
|
}
|
|
|
|
// Factory is used to instantiate a new Fingerprint
|
|
type Factory func(*log.Logger) Fingerprint
|
|
|
|
// Fingerprint is used for doing "fingerprinting" of the
|
|
// host to automatically determine attributes, resources,
|
|
// and metadata about it. Each of these is a heuristic, and
|
|
// many of them can be applied on a particular host.
|
|
type Fingerprint interface {
|
|
// Fingerprint is used to update properties of the Node,
|
|
// and returns if the fingerprint was applicable and a potential error.
|
|
Fingerprint(*config.Config, *structs.Node) (bool, error)
|
|
}
|