Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cli: Add JSON and Pretty Print formatting for consul snapshot inspect #9006

Merged
merged 6 commits into from
Oct 29, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/9006.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:feature
cli: snapshot inspect command supports JSON output
```
124 changes: 124 additions & 0 deletions command/snapshot/inspect/formatter.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
package inspect

import (
"bytes"
"encoding/json"
"fmt"
"sort"
"strconv"
"strings"
"text/tabwriter"
)

const (
PrettyFormat string = "pretty"
JSONFormat string = "json"
)

type Formatter interface {
Format(*OutputFormat) (string, error)
}

func GetSupportedFormats() []string {
return []string{PrettyFormat, JSONFormat}
}

type prettyFormatter struct{}

func newPrettyFormatter() Formatter {
return &prettyFormatter{}
}
func NewFormatter(format string) (Formatter, error) {
switch format {
case PrettyFormat:
return newPrettyFormatter(), nil
case JSONFormat:
return newJSONFormatter(), nil
default:
return nil, fmt.Errorf("Unknown format: %s", format)
}
}

func (_ *prettyFormatter) Format(info *OutputFormat) (string, error) {
var b bytes.Buffer
// For the enhanced stats
ss := make([]typeStats, 0, len(info.Stats))

for _, s := range info.Stats {
ss = append(ss, s)
}

// Sort the stat slice
sort.Slice(ss, func(i, j int) bool { return ss[i].Sum > ss[j].Sum })
tw := tabwriter.NewWriter(&b, 8, 8, 6, ' ', 0)

fmt.Fprintf(tw, " ID\t%s", info.Meta.ID)
fmt.Fprintf(tw, "\n Size\t%d", info.Meta.Size)
fmt.Fprintf(tw, "\n Index\t%d", info.Meta.Index)
fmt.Fprintf(tw, "\n Term\t%d", info.Meta.Term)
fmt.Fprintf(tw, "\n Version\t%d", info.Meta.Version)
fmt.Fprintf(tw, "\n")
fmt.Fprintln(tw, "\n Type\tCount\tSize\t")
fmt.Fprintf(tw, " %s\t%s\t%s\t", "----", "----", "----")
// For each different type generate new output
for _, s := range ss {
fmt.Fprintf(tw, "\n %s\t%d\t%s\t", s.Name, s.Count, ByteSize(uint64(s.Sum)))
}
fmt.Fprintf(tw, "\n %s\t%s\t%s\t", "----", "----", "----")
fmt.Fprintf(tw, "\n Total\t\t%s\t", ByteSize(uint64(info.TotalSize)))

if err := tw.Flush(); err != nil {
return b.String(), err
}
return b.String(), nil
}

type jsonFormatter struct{}

func newJSONFormatter() Formatter {
return &jsonFormatter{}
}

func (_ *jsonFormatter) Format(info *OutputFormat) (string, error) {
b, err := json.MarshalIndent(info, "", " ")
if err != nil {
return "", fmt.Errorf("Failed to marshal original snapshot stats: %v", err)
}
return string(b), nil
}

const (
BYTE = 1 << (10 * iota)
KILOBYTE
MEGABYTE
GIGABYTE
TERABYTE
)

func ByteSize(bytes uint64) string {
unit := ""
value := float64(bytes)

switch {
case bytes >= TERABYTE:
unit = "TB"
value = value / TERABYTE
case bytes >= GIGABYTE:
unit = "GB"
value = value / GIGABYTE
case bytes >= MEGABYTE:
unit = "MB"
value = value / MEGABYTE
case bytes >= KILOBYTE:
unit = "KB"
value = value / KILOBYTE
case bytes >= BYTE:
unit = "B"
case bytes == 0:
return "0"
}

result := strconv.FormatFloat(value, 'f', 1, 64)
result = strings.TrimSuffix(result, ".0")
return result + unit
}
47 changes: 47 additions & 0 deletions command/snapshot/inspect/formatter_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
package inspect

import (
"fmt"
"testing"

"github.com/hashicorp/consul/agent/structs"
"github.com/stretchr/testify/require"
)

func TestFormat(t *testing.T) {
m := make(map[structs.MessageType]typeStats)
m[1] = typeStats{
Name: "msg",
Sum: 1,
Count: 2,
}
info := OutputFormat{
Meta: &MetadataInfo{
ID: "one",
Size: 2,
Index: 3,
Term: 4,
Version: 1,
},
Stats: m,
TotalSize: 1,
}

formatters := map[string]Formatter{
"pretty": newPrettyFormatter(),
// the JSON formatter ignores the showMeta
"json": newJSONFormatter(),
}

for fmtName, formatter := range formatters {
t.Run(fmtName, func(t *testing.T) {
actual, err := formatter.Format(&info)
require.NoError(t, err)

gName := fmt.Sprintf("%s", fmtName)

expected := golden(t, gName, actual)
require.Equal(t, expected, actual)
})
}
}
158 changes: 48 additions & 110 deletions command/snapshot/inspect/snapshot_inspect.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
package inspect

import (
"bytes"
"flag"
"fmt"
"io"
"os"
"sort"
"strconv"
"strings"
"text/tabwriter"

"github.com/hashicorp/consul/agent/consul/fsm"
"github.com/hashicorp/consul/agent/structs"
Expand All @@ -28,16 +24,41 @@ func New(ui cli.Ui) *cmd {
}

type cmd struct {
UI cli.Ui
flags *flag.FlagSet
help string
UI cli.Ui
flags *flag.FlagSet
help string
format string
}

func (c *cmd) init() {
c.flags = flag.NewFlagSet("", flag.ContinueOnError)
c.flags.StringVar(
&c.format,
"format",
PrettyFormat,
fmt.Sprintf("Output format {%s}", strings.Join(GetSupportedFormats(), "|")))

c.help = flags.Usage(help, c.flags)
}

// MetadataInfo is used for passing information
// through the formatter
type MetadataInfo struct {
ID string
Size int64
Index uint64
Term uint64
Version raft.SnapshotVersion
}

// OutputFormat is used for passing information
// through the formatter
type OutputFormat struct {
Meta *MetadataInfo
Stats map[structs.MessageType]typeStats
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder whether this field should be Stats []typeStats. In the pretty output I see that you are creating a slice of these and then sorting. For the JSON output I wonder whether it would be better to see:

"Stats": [
   {
      "Name": "Register",
      "Count": 20,
      "Sum": 1537,
   }
]

Having the MessageType (int) as a map key in JSON doesn't seem that useful. Also having it in an array would more easily allow us to aggregate stats for namespaces without having the map keys conflict.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh I didn't even notice that, good catch.

TotalSize int
}

func (c *cmd) Run(args []string) int {
if err := c.flags.Parse(args); err != nil {
c.UI.Error(err.Error())
Expand Down Expand Up @@ -84,40 +105,36 @@ func (c *cmd) Run(args []string) int {
c.UI.Error(fmt.Sprintf("Error extracting snapshot data: %s", err))
return 1
}
// Outputs the original style of inspect information
legacy, err := c.legacyStats(meta)

formatter, err := NewFormatter(c.format)
if err != nil {
c.UI.Error(fmt.Sprintf("Error outputting snapshot data: %s", err))
c.UI.Error(fmt.Sprintf("Error outputting enhanced snapshot data: %s", err))
return 1
}
//Generate structs for the formatter with information we read in
metaformat := &MetadataInfo{
ID: meta.ID,
Size: meta.Size,
Index: meta.Index,
Term: meta.Term,
Version: meta.Version,
}
c.UI.Info(legacy.String())

// Outputs the more detailed snapshot information
enhanced, err := c.readStats(stats, totalSize)
in := &OutputFormat{
Meta: metaformat,
Stats: stats,
TotalSize: totalSize,
}
out, err := formatter.Format(in)
if err != nil {
c.UI.Error(fmt.Sprintf("Error outputting enhanced snapshot data: %s", err))
c.UI.Error(err.Error())
return 1
}
c.UI.Info(enhanced.String())

c.UI.Output(out)
return 0
}

// legacyStats outputs the expected stats from the original snapshot
// inspect command
func (c *cmd) legacyStats(meta *raft.SnapshotMeta) (bytes.Buffer, error) {
var b bytes.Buffer
tw := tabwriter.NewWriter(&b, 0, 2, 6, ' ', 0)
fmt.Fprintf(tw, "ID\t%s\n", meta.ID)
fmt.Fprintf(tw, "Size\t%d\n", meta.Size)
fmt.Fprintf(tw, "Index\t%d\n", meta.Index)
fmt.Fprintf(tw, "Term\t%d\n", meta.Term)
fmt.Fprintf(tw, "Version\t%d\n", meta.Version)
if err := tw.Flush(); err != nil {
return b, err
}
return b, nil
}

type typeStats struct {
Name string
Sum int
Expand Down Expand Up @@ -171,85 +188,6 @@ func enhance(file io.Reader) (map[structs.MessageType]typeStats, int, error) {

}

// readStats takes the information generated from enhance and creates human
// readable output from it
func (c *cmd) readStats(stats map[structs.MessageType]typeStats, totalSize int) (bytes.Buffer, error) {
// Output stats in size-order
ss := make([]typeStats, 0, len(stats))

for _, s := range stats {
ss = append(ss, s)
}

// Sort the stat slice
sort.Slice(ss, func(i, j int) bool { return ss[i].Sum > ss[j].Sum })

var b bytes.Buffer

tw := tabwriter.NewWriter(&b, 8, 8, 6, ' ', 0)
fmt.Fprintln(tw, "\n Type\tCount\tSize\t")
fmt.Fprintf(tw, " %s\t%s\t%s\t", "----", "----", "----")
// For each different type generate new output
for _, s := range ss {
fmt.Fprintf(tw, "\n %s\t%d\t%s\t", s.Name, s.Count, ByteSize(uint64(s.Sum)))
}
fmt.Fprintf(tw, "\n %s\t%s\t%s\t", "----", "----", "----")
fmt.Fprintf(tw, "\n Total\t\t%s\t", ByteSize(uint64(totalSize)))

if err := tw.Flush(); err != nil {
c.UI.Error(fmt.Sprintf("Error rendering snapshot info: %s", err))
return b, err
}

return b, nil

}

// ByteSize returns a human-readable byte string of the form 10MB, 12.5KB, and so forth. The following units are available:
// TB: Terabyte
// GB: Gigabyte
// MB: Megabyte
// KB: Kilobyte
// B: Byte
// The unit that results in the smallest number greater than or equal to 1 is always chosen.
// From https://github.com/cloudfoundry/bytefmt/blob/master/bytes.go

const (
BYTE = 1 << (10 * iota)
KILOBYTE
MEGABYTE
GIGABYTE
TERABYTE
)

func ByteSize(bytes uint64) string {
unit := ""
value := float64(bytes)

switch {
case bytes >= TERABYTE:
unit = "TB"
value = value / TERABYTE
case bytes >= GIGABYTE:
unit = "GB"
value = value / GIGABYTE
case bytes >= MEGABYTE:
unit = "MB"
value = value / MEGABYTE
case bytes >= KILOBYTE:
unit = "KB"
value = value / KILOBYTE
case bytes >= BYTE:
unit = "B"
case bytes == 0:
return "0"
}

result := strconv.FormatFloat(value, 'f', 1, 64)
result = strings.TrimSuffix(result, ".0")
return result + unit
}

func (c *cmd) Synopsis() string {
return synopsis
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
ID 2-13-1602222343947
Size 5141
Index 13
Term 2
Version 1

ID 2-13-1602222343947
Size 5141
Index 13
Term 2
Version 1

Type Count Size
---- ---- ----
Expand Down
Loading