2020-08-21 21:16:42 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/helper/raftutil"
|
|
|
|
"github.com/posener/complete"
|
|
|
|
)
|
|
|
|
|
|
|
|
type OperatorRaftLogsCommand struct {
|
|
|
|
Meta
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *OperatorRaftLogsCommand) Help() string {
|
|
|
|
helpText := `
|
|
|
|
Usage: nomad operator raft _logs <path to nomad data dir>
|
|
|
|
|
2020-08-31 11:49:45 +00:00
|
|
|
Display the log entries persisted in data dir in json form.
|
|
|
|
|
|
|
|
This is a low-level debugging tool and not subject to Nomad's usual backward
|
|
|
|
compatibility guarantees.
|
2020-08-21 21:16:42 +00:00
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *OperatorRaftLogsCommand) AutocompleteFlags() complete.Flags {
|
|
|
|
return complete.Flags{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *OperatorRaftLogsCommand) AutocompleteArgs() complete.Predictor {
|
|
|
|
return complete.PredictNothing
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *OperatorRaftLogsCommand) Synopsis() string {
|
|
|
|
return "Display raft log content"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *OperatorRaftLogsCommand) Name() string { return "operator raft _info" }
|
|
|
|
|
|
|
|
func (c *OperatorRaftLogsCommand) Run(args []string) int {
|
|
|
|
if len(args) != 1 {
|
|
|
|
c.Ui.Error("This command takes one argument: <path>")
|
|
|
|
c.Ui.Error(commandErrorText(c))
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
p := args[0]
|
|
|
|
if fi, err := os.Stat(p); err == nil && fi.IsDir() {
|
|
|
|
p = filepath.Join(args[0], "server", "raft", "raft.db")
|
|
|
|
}
|
|
|
|
|
|
|
|
logs, warnings, err := raftutil.LogEntries(p)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, warning := range warnings {
|
|
|
|
c.Ui.Error(warning.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
enc := json.NewEncoder(os.Stdout)
|
|
|
|
enc.SetIndent("", " ")
|
|
|
|
if err := enc.Encode(logs); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("failed to encode output: %v", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|