open-nomad/command/agent_info.go

82 lines
1.6 KiB
Go
Raw Normal View History

2015-09-11 17:50:39 +00:00
package command
import (
"fmt"
2015-12-12 12:39:16 +00:00
"sort"
2015-09-11 17:50:39 +00:00
"strings"
)
type AgentInfoCommand struct {
Meta
2015-09-11 17:50:39 +00:00
}
func (c *AgentInfoCommand) Help() string {
helpText := `
Usage: nomad agent-info [options]
2015-09-13 18:39:49 +00:00
Display status information about the local agent.
2015-09-11 17:50:39 +00:00
General Options:
2015-09-11 17:50:39 +00:00
` + generalOptionsUsage()
2015-09-11 17:50:39 +00:00
return strings.TrimSpace(helpText)
}
func (c *AgentInfoCommand) Synopsis() string {
return "Display status information about the local agent"
2015-09-11 17:50:39 +00:00
}
func (c *AgentInfoCommand) Run(args []string) int {
flags := c.Meta.FlagSet("agent-info", FlagSetClient)
2015-09-11 17:50:39 +00:00
flags.Usage = func() { c.Ui.Output(c.Help()) }
if err := flags.Parse(args); err != nil {
return 1
}
// Check that we either got no jobs or exactly one.
args = flags.Args()
if len(args) > 0 {
2015-09-11 17:50:39 +00:00
c.Ui.Error(c.Help())
return 1
}
// Get the HTTP client
client, err := c.Meta.Client()
2015-09-11 17:50:39 +00:00
if err != nil {
c.Ui.Error(fmt.Sprintf("Error initializing client: %s", err))
2015-09-11 17:50:39 +00:00
return 1
}
// Query the agent info
info, err := client.Agent().Self()
if err != nil {
c.Ui.Error(fmt.Sprintf("Error querying agent info: %s", err))
2015-09-11 17:50:39 +00:00
return 1
}
2015-12-12 12:39:16 +00:00
// Sort and output agent info
statsKeys := make([]string, 0, len(info.Stats))
for key := range info.Stats {
2015-12-17 22:53:33 +00:00
statsKeys = append(statsKeys, key)
2015-12-12 12:39:16 +00:00
}
2015-12-17 22:53:33 +00:00
sort.Strings(statsKeys)
2015-12-12 12:39:16 +00:00
2015-12-17 22:53:33 +00:00
for _, key := range statsKeys {
2015-12-12 12:39:16 +00:00
c.Ui.Output(key)
statsData, _ := info.Stats[key]
2015-12-21 23:10:49 +00:00
statsDataKeys := make([]string, len(statsData))
i := 0
2015-12-17 22:53:33 +00:00
for key := range statsData {
2015-12-21 23:10:49 +00:00
statsDataKeys[i] = key
i++
2015-12-12 12:39:16 +00:00
}
2015-12-17 22:53:33 +00:00
sort.Strings(statsDataKeys)
2015-09-11 17:50:39 +00:00
2015-12-17 22:53:33 +00:00
for _, key := range statsDataKeys {
c.Ui.Output(fmt.Sprintf(" %s = %v", key, statsData[key]))
2015-09-11 17:50:39 +00:00
}
}
return 0
}