open-nomad/command/status.go

139 lines
3.0 KiB
Go
Raw Normal View History

package command
import (
"fmt"
"strings"
"github.com/hashicorp/nomad/api/contexts"
"github.com/mitchellh/cli"
"github.com/posener/complete"
)
type StatusCommand struct {
Meta
}
2017-08-25 14:24:36 +00:00
func (s *StatusCommand) Help() string {
helpText := `
Usage: nomad status [options] <identifier>
Display the status output for any given resource. The command will
detect the type of resource being queried and display the appropriate
status output.
General Options:
` + generalOptionsUsage()
return strings.TrimSpace(helpText)
}
func (c *StatusCommand) Synopsis() string {
return "Display the status output for a resource"
}
func (c *StatusCommand) AutocompleteFlags() complete.Flags {
return mergeAutocompleteFlags(c.Meta.AutocompleteFlags(FlagSetClient), nil)
}
func (c *StatusCommand) AutocompleteArgs() complete.Predictor {
client, _ := c.Meta.Client()
return complete.PredictFunc(func(a complete.Args) []string {
if len(a.Completed) > 1 {
return nil
}
resp, err := client.Search().PrefixSearch(a.Last, contexts.All)
if err != nil {
return []string{}
}
final := make([]string, 0)
for _, matches := range resp.Matches {
if len(matches) == 0 {
continue
}
final = append(final, matches...)
}
return final
})
}
func (c *StatusCommand) Run(args []string) int {
2017-08-18 13:49:20 +00:00
flags := c.Meta.FlagSet("status", FlagSetClient)
flags.Usage = func() { c.Ui.Output(c.Help()) }
2017-08-18 13:49:20 +00:00
if err := flags.Parse(args); err != nil {
c.Ui.Error(fmt.Sprintf("Error parsing arguments: %q", err))
2017-08-18 13:49:20 +00:00
return 1
}
// Store the original arguments so we can pass them to the routed command
argsCopy := args
2017-08-18 13:49:20 +00:00
// Check that we got exactly one evaluation ID
args = flags.Args()
// Get the HTTP client
client, err := c.Meta.Client()
if err != nil {
c.Ui.Error(fmt.Sprintf("Error initializing client: %q", err))
return 1
}
2017-08-17 21:37:38 +00:00
// If no identifier is provided, default to listing jobs
2017-08-18 13:49:20 +00:00
if len(args) == 0 {
cmd := &JobStatusCommand{Meta: c.Meta}
2017-08-18 13:49:20 +00:00
return cmd.Run(argsCopy)
}
id := args[len(args)-1]
2017-08-17 21:37:38 +00:00
// Query for the context associated with the id
res, err := client.Search().PrefixSearch(id, contexts.All)
if err != nil {
c.Ui.Error(fmt.Sprintf("Error querying search with id: %q", err))
return 1
}
if res.Matches == nil {
c.Ui.Error(fmt.Sprintf("No matches returned for query: %q", err))
return 1
}
var match contexts.Context
matchCount := 0
for ctx, vers := range res.Matches {
if len(vers) == 1 {
match = ctx
matchCount++
}
2017-08-17 21:37:38 +00:00
// Only a single result should return, as this is a match against a full id
if matchCount > 1 || len(vers) > 1 {
2017-08-21 23:12:35 +00:00
c.Ui.Error(fmt.Sprintf("Multiple matches found for id %q", id))
return 1
}
}
var cmd cli.Command
switch match {
case contexts.Evals:
cmd = &EvalStatusCommand{Meta: c.Meta}
case contexts.Nodes:
cmd = &NodeStatusCommand{Meta: c.Meta}
case contexts.Allocs:
cmd = &AllocStatusCommand{Meta: c.Meta}
case contexts.Jobs:
cmd = &JobStatusCommand{Meta: c.Meta}
default:
2017-08-21 23:12:35 +00:00
c.Ui.Error(fmt.Sprintf("Unable to resolve ID: %q", id))
return 1
}
2017-08-18 13:49:20 +00:00
return cmd.Run(argsCopy)
}