consul/command/info/info.go

103 lines
2.0 KiB
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
[COMPLIANCE] License changes (#18443) * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2023-08-11 13:12:13 +00:00
// SPDX-License-Identifier: BUSL-1.1
package info
2014-02-24 00:59:32 +00:00
import (
"flag"
2014-02-24 00:59:32 +00:00
"fmt"
"sort"
"github.com/hashicorp/consul/command/flags"
"github.com/mitchellh/cli"
2014-02-24 00:59:32 +00:00
)
func New(ui cli.Ui) *cmd {
c := &cmd{UI: ui}
c.init()
return c
}
type cmd struct {
UI cli.Ui
flags *flag.FlagSet
http *flags.HTTPFlags
help string
}
func (c *cmd) init() {
c.flags = flag.NewFlagSet("", flag.ContinueOnError)
c.http = &flags.HTTPFlags{}
flags.Merge(c.flags, c.http.ClientFlags())
c.help = flags.Usage(help, c.flags)
2014-02-24 00:59:32 +00:00
}
func (c *cmd) Run(args []string) int {
if err := c.flags.Parse(args); err != nil {
2014-02-24 00:59:32 +00:00
return 1
}
client, err := c.http.APIClient()
2014-02-24 00:59:32 +00:00
if err != nil {
c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err))
2014-02-24 00:59:32 +00:00
return 1
}
self, err := client.Agent().Self()
2014-02-24 00:59:32 +00:00
if err != nil {
c.UI.Error(fmt.Sprintf("Error querying agent: %s", err))
2014-02-24 00:59:32 +00:00
return 1
}
stats, ok := self["Stats"]
if !ok {
c.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 {
c.UI.Output(key + ":")
2014-02-24 00:59:32 +00:00
// Sort the sub-keys
subvals, ok := stats[key].(map[string]interface{})
if !ok {
c.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]
c.UI.Output(fmt.Sprintf("\t%s = %s", subkey, val))
2014-02-24 00:59:32 +00:00
}
}
return 0
}
func (c *cmd) Synopsis() string {
return synopsis
}
func (c *cmd) Help() string {
return c.help
}
const synopsis = "Provides debugging information for operators."
const help = `
Usage: consul info [options]
Provides debugging information for operators.
`