nomad: expose RuntimeStats

This commit is contained in:
Armon Dadgar 2015-08-20 15:29:30 -07:00
parent 0383bf3c14
commit 40def1a187
3 changed files with 4 additions and 4 deletions

View File

@ -145,7 +145,7 @@ func (c *Client) Stats() map[string]map[string]string {
"server": "false",
"known_servers": toString(uint64(len(c.config.ServerAddress))),
},
"runtime": runtimeStats(),
"runtime": RuntimeStats(),
}
return stats
}

View File

@ -640,7 +640,7 @@ func (s *Server) Stats() map[string]map[string]string {
},
"raft": s.raft.Stats(),
"serf": s.serf.Stats(),
"runtime": runtimeStats(),
"runtime": RuntimeStats(),
}
return stats
}

View File

@ -22,8 +22,8 @@ func ensurePath(path string, dir bool) error {
return os.MkdirAll(path, 0755)
}
// runtimeStats is used to return various runtime information
func runtimeStats() map[string]string {
// RuntimeStats is used to return various runtime information
func RuntimeStats() map[string]string {
return map[string]string{
"os": runtime.GOOS,
"arch": runtime.GOARCH,