2015-06-01 15:49:10 +00:00
|
|
|
package nomad
|
|
|
|
|
|
|
|
import (
|
2015-06-04 10:33:12 +00:00
|
|
|
"fmt"
|
2015-06-03 11:35:48 +00:00
|
|
|
"net"
|
2015-06-01 15:49:10 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2015-06-03 10:26:50 +00:00
|
|
|
"runtime"
|
|
|
|
"strconv"
|
2015-06-03 11:35:48 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/serf/serf"
|
2015-06-01 15:49:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ensurePath is used to make sure a path exists
|
|
|
|
func ensurePath(path string, dir bool) error {
|
|
|
|
if !dir {
|
|
|
|
path = filepath.Dir(path)
|
|
|
|
}
|
|
|
|
return os.MkdirAll(path, 0755)
|
|
|
|
}
|
2015-06-03 10:26:50 +00:00
|
|
|
|
|
|
|
// runtimeStats is used to return various runtime information
|
|
|
|
func runtimeStats() map[string]string {
|
|
|
|
return map[string]string{
|
|
|
|
"os": runtime.GOOS,
|
|
|
|
"arch": runtime.GOARCH,
|
|
|
|
"version": runtime.Version(),
|
|
|
|
"max_procs": strconv.FormatInt(int64(runtime.GOMAXPROCS(0)), 10),
|
|
|
|
"goroutines": strconv.FormatInt(int64(runtime.NumGoroutine()), 10),
|
|
|
|
"cpu_count": strconv.FormatInt(int64(runtime.NumCPU()), 10),
|
|
|
|
}
|
|
|
|
}
|
2015-06-03 11:35:48 +00:00
|
|
|
|
|
|
|
// serverParts is used to return the parts of a server role
|
|
|
|
type serverParts struct {
|
|
|
|
Name string
|
|
|
|
Region string
|
|
|
|
Datacenter string
|
|
|
|
Port int
|
|
|
|
Bootstrap bool
|
|
|
|
Expect int
|
|
|
|
Version int
|
|
|
|
Addr net.Addr
|
|
|
|
}
|
|
|
|
|
2015-06-04 10:33:12 +00:00
|
|
|
func (s *serverParts) String() string {
|
|
|
|
return fmt.Sprintf("%s (Addr: %s) (DC: %s)",
|
|
|
|
s.Name, s.Addr, s.Datacenter)
|
|
|
|
}
|
|
|
|
|
2015-06-03 11:35:48 +00:00
|
|
|
// Returns if a member is a Nomad server. Returns a boolean,
|
|
|
|
// and a struct with the various important components
|
|
|
|
func isNomadServer(m serf.Member) (bool, *serverParts) {
|
|
|
|
if m.Tags["role"] != "nomad" {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
region := m.Tags["region"]
|
|
|
|
datacenter := m.Tags["dc"]
|
|
|
|
_, bootstrap := m.Tags["bootstrap"]
|
|
|
|
|
|
|
|
expect := 0
|
|
|
|
expect_str, ok := m.Tags["expect"]
|
|
|
|
var err error
|
|
|
|
if ok {
|
|
|
|
expect, err = strconv.Atoi(expect_str)
|
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
port_str := m.Tags["port"]
|
|
|
|
port, err := strconv.Atoi(port_str)
|
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
vsn_str := m.Tags["vsn"]
|
|
|
|
vsn, err := strconv.Atoi(vsn_str)
|
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
addr := &net.TCPAddr{IP: m.Addr, Port: port}
|
|
|
|
parts := &serverParts{
|
|
|
|
Name: m.Name,
|
|
|
|
Region: region,
|
|
|
|
Datacenter: datacenter,
|
|
|
|
Port: port,
|
|
|
|
Bootstrap: bootstrap,
|
|
|
|
Expect: expect,
|
|
|
|
Addr: addr,
|
|
|
|
Version: vsn,
|
|
|
|
}
|
|
|
|
return true, parts
|
|
|
|
}
|