open-consul/command/info.go

86 lines
1.8 KiB
Go
Raw Normal View History

2014-02-24 00:59:32 +00:00
package command
import (
"fmt"
"github.com/hashicorp/consul/command/base"
2014-02-24 00:59:32 +00:00
"sort"
"strings"
)
// InfoCommand is a Command implementation that queries a running
// Consul agent for various debugging statistics for operators
type InfoCommand struct {
base.Command
2014-02-24 00:59:32 +00:00
}
func (i *InfoCommand) Help() string {
helpText := `
Usage: consul info [options]
Provides debugging information for operators
` + i.Command.Help()
2014-02-24 00:59:32 +00:00
return strings.TrimSpace(helpText)
}
func (i *InfoCommand) Run(args []string) int {
i.Command.NewFlagSet(i)
if err := i.Command.Parse(args); err != nil {
2014-02-24 00:59:32 +00:00
return 1
}
client, err := i.Command.HTTPClient()
2014-02-24 00:59:32 +00:00
if err != nil {
i.Ui.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err))
return 1
}
self, err := client.Agent().Self()
2014-02-24 00:59:32 +00:00
if err != nil {
i.Ui.Error(fmt.Sprintf("Error querying agent: %s", err))
return 1
}
stats, ok := self["Stats"]
if !ok {
i.Ui.Error(fmt.Sprintf("Agent response did not contain 'Stats' key: %v", self))
return 1
}
2014-02-24 00:59:32 +00:00
// Get the keys in sorted order
keys := make([]string, 0, len(stats))
for key := range stats {
keys = append(keys, key)
}
sort.Strings(keys)
// Iterate over each top-level key
for _, key := range keys {
2014-02-24 01:09:59 +00:00
i.Ui.Output(key + ":")
2014-02-24 00:59:32 +00:00
// Sort the sub-keys
subvals, ok := stats[key].(map[string]interface{})
if !ok {
i.Ui.Error(fmt.Sprintf("Got invalid subkey in stats: %v", subvals))
return 1
}
2014-02-24 00:59:32 +00:00
subkeys := make([]string, 0, len(subvals))
for k := range subvals {
subkeys = append(subkeys, k)
}
sort.Strings(subkeys)
// Iterate over the subkeys
for _, subkey := range subkeys {
val := subvals[subkey]
i.Ui.Output(fmt.Sprintf("\t%s = %s", subkey, val))
}
}
return 0
}
func (i *InfoCommand) Synopsis() string {
return "Provides debugging information for operators."
2014-02-24 00:59:32 +00:00
}