2015-08-20 23:29:19 +00:00
|
|
|
package fingerprint
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"runtime"
|
|
|
|
|
2018-01-24 14:09:53 +00:00
|
|
|
cstructs "github.com/hashicorp/nomad/client/structs"
|
2015-08-20 23:29:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ArchFingerprint is used to fingerprint the architecture
|
|
|
|
type ArchFingerprint struct {
|
2015-11-05 21:46:02 +00:00
|
|
|
StaticFingerprinter
|
2015-08-20 23:29:19 +00:00
|
|
|
logger *log.Logger
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewArchFingerprint is used to create an OS fingerprint
|
|
|
|
func NewArchFingerprint(logger *log.Logger) Fingerprint {
|
2015-08-27 00:16:34 +00:00
|
|
|
f := &ArchFingerprint{logger: logger}
|
2015-08-20 23:29:19 +00:00
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2018-01-24 14:09:53 +00:00
|
|
|
func (f *ArchFingerprint) Fingerprint(req *cstructs.FingerprintRequest, resp *cstructs.FingerprintResponse) error {
|
2018-01-26 16:21:07 +00:00
|
|
|
resp.AddAttribute("cpu.arch", runtime.GOARCH)
|
2018-01-31 22:03:55 +00:00
|
|
|
resp.Detected = true
|
2018-01-24 14:09:53 +00:00
|
|
|
return nil
|
2015-08-20 23:29:19 +00:00
|
|
|
}
|