github.com/manicqin/nomad@v0.9.5/command/alloc_logs.go (about)

     1  package command
     2  
     3  import (
     4  	"errors"
     5  	"fmt"
     6  	"io"
     7  	"os"
     8  	"os/signal"
     9  	"strings"
    10  	"syscall"
    11  	"time"
    12  
    13  	"github.com/hashicorp/nomad/api"
    14  	"github.com/hashicorp/nomad/api/contexts"
    15  	"github.com/posener/complete"
    16  )
    17  
    18  type AllocLogsCommand struct {
    19  	Meta
    20  }
    21  
    22  func (l *AllocLogsCommand) Help() string {
    23  	helpText := `
    24  Usage: nomad alloc logs [options] <allocation> <task>
    25  Alias: nomad logs
    26  
    27    Streams the stdout/stderr of the given allocation and task.
    28  
    29  General Options:
    30  
    31    ` + generalOptionsUsage() + `
    32  
    33  Logs Specific Options:
    34  
    35    -stderr
    36      Display stderr logs.
    37  
    38    -verbose
    39      Show full information.
    40  
    41    -job <job-id>
    42      Use a random allocation from the specified job ID.
    43  
    44    -f
    45      Causes the output to not stop when the end of the logs are reached, but
    46      rather to wait for additional output.
    47  
    48    -tail
    49      Show the logs contents with offsets relative to the end of the logs. If no
    50      offset is given, -n is defaulted to 10.
    51  
    52    -n
    53      Sets the tail location in best-efforted number of lines relative to the end
    54      of the logs.
    55  
    56    -c
    57      Sets the tail location in number of bytes relative to the end of the logs.
    58    `
    59  	return strings.TrimSpace(helpText)
    60  }
    61  
    62  func (l *AllocLogsCommand) Synopsis() string {
    63  	return "Streams the logs of a task."
    64  }
    65  
    66  func (c *AllocLogsCommand) AutocompleteFlags() complete.Flags {
    67  	return mergeAutocompleteFlags(c.Meta.AutocompleteFlags(FlagSetClient),
    68  		complete.Flags{
    69  			"-stderr":  complete.PredictNothing,
    70  			"-verbose": complete.PredictNothing,
    71  			"-job":     complete.PredictAnything,
    72  			"-f":       complete.PredictNothing,
    73  			"-tail":    complete.PredictAnything,
    74  			"-n":       complete.PredictAnything,
    75  			"-c":       complete.PredictAnything,
    76  		})
    77  }
    78  
    79  func (l *AllocLogsCommand) AutocompleteArgs() complete.Predictor {
    80  	return complete.PredictFunc(func(a complete.Args) []string {
    81  		client, err := l.Meta.Client()
    82  		if err != nil {
    83  			return nil
    84  		}
    85  
    86  		resp, _, err := client.Search().PrefixSearch(a.Last, contexts.Allocs, nil)
    87  		if err != nil {
    88  			return []string{}
    89  		}
    90  		return resp.Matches[contexts.Allocs]
    91  	})
    92  }
    93  
    94  func (l *AllocLogsCommand) Name() string { return "alloc logs" }
    95  
    96  func (l *AllocLogsCommand) Run(args []string) int {
    97  	var verbose, job, tail, stderr, follow bool
    98  	var numLines, numBytes int64
    99  
   100  	flags := l.Meta.FlagSet(l.Name(), FlagSetClient)
   101  	flags.Usage = func() { l.Ui.Output(l.Help()) }
   102  	flags.BoolVar(&verbose, "verbose", false, "")
   103  	flags.BoolVar(&job, "job", false, "")
   104  	flags.BoolVar(&tail, "tail", false, "")
   105  	flags.BoolVar(&follow, "f", false, "")
   106  	flags.BoolVar(&stderr, "stderr", false, "")
   107  	flags.Int64Var(&numLines, "n", -1, "")
   108  	flags.Int64Var(&numBytes, "c", -1, "")
   109  
   110  	if err := flags.Parse(args); err != nil {
   111  		return 1
   112  	}
   113  	args = flags.Args()
   114  
   115  	if numArgs := len(args); numArgs < 1 {
   116  		if job {
   117  			l.Ui.Error("A job ID is required")
   118  		} else {
   119  			l.Ui.Error("An allocation ID is required")
   120  		}
   121  
   122  		l.Ui.Error(commandErrorText(l))
   123  		return 1
   124  	} else if numArgs > 2 {
   125  		l.Ui.Error("This command takes one or two arguments")
   126  		l.Ui.Error(commandErrorText(l))
   127  		return 1
   128  	}
   129  
   130  	client, err := l.Meta.Client()
   131  	if err != nil {
   132  		l.Ui.Error(fmt.Sprintf("Error initializing client: %v", err))
   133  		return 1
   134  	}
   135  
   136  	// If -job is specified, use random allocation, otherwise use provided allocation
   137  	allocID := args[0]
   138  	if job {
   139  		allocID, err = getRandomJobAlloc(client, args[0])
   140  		if err != nil {
   141  			l.Ui.Error(fmt.Sprintf("Error fetching allocations: %v", err))
   142  			return 1
   143  		}
   144  	}
   145  
   146  	// Truncate the id unless full length is requested
   147  	length := shortId
   148  	if verbose {
   149  		length = fullId
   150  	}
   151  	// Query the allocation info
   152  	if len(allocID) == 1 {
   153  		l.Ui.Error(fmt.Sprintf("Alloc ID must contain at least two characters."))
   154  		return 1
   155  	}
   156  
   157  	allocID = sanitizeUUIDPrefix(allocID)
   158  	allocs, _, err := client.Allocations().PrefixList(allocID)
   159  	if err != nil {
   160  		l.Ui.Error(fmt.Sprintf("Error querying allocation: %v", err))
   161  		return 1
   162  	}
   163  	if len(allocs) == 0 {
   164  		l.Ui.Error(fmt.Sprintf("No allocation(s) with prefix or id %q found", allocID))
   165  		return 1
   166  	}
   167  	if len(allocs) > 1 {
   168  		// Format the allocs
   169  		out := formatAllocListStubs(allocs, verbose, length)
   170  		l.Ui.Error(fmt.Sprintf("Prefix matched multiple allocations\n\n%s", out))
   171  		return 1
   172  	}
   173  	// Prefix lookup matched a single allocation
   174  	alloc, _, err := client.Allocations().Info(allocs[0].ID, nil)
   175  	if err != nil {
   176  		l.Ui.Error(fmt.Sprintf("Error querying allocation: %s", err))
   177  		return 1
   178  	}
   179  
   180  	var task string
   181  	if len(args) >= 2 {
   182  		task = args[1]
   183  		if task == "" {
   184  			l.Ui.Error("Task name required")
   185  			return 1
   186  		}
   187  
   188  	} else {
   189  		task, err = lookupAllocTask(alloc)
   190  
   191  		if err != nil {
   192  			l.Ui.Error(err.Error())
   193  			return 1
   194  		}
   195  	}
   196  
   197  	logType := "stdout"
   198  	if stderr {
   199  		logType = "stderr"
   200  	}
   201  
   202  	// We have a file, output it.
   203  	var r io.ReadCloser
   204  	var readErr error
   205  	if !tail {
   206  		r, readErr = l.followFile(client, alloc, follow, task, logType, api.OriginStart, 0)
   207  		if readErr != nil {
   208  			readErr = fmt.Errorf("Error reading file: %v", readErr)
   209  		}
   210  	} else {
   211  		// Parse the offset
   212  		var offset int64 = defaultTailLines * bytesToLines
   213  
   214  		if nLines, nBytes := numLines != -1, numBytes != -1; nLines && nBytes {
   215  			l.Ui.Error("Both -n and -c set")
   216  			return 1
   217  		} else if nLines {
   218  			offset = numLines * bytesToLines
   219  		} else if nBytes {
   220  			offset = numBytes
   221  		} else {
   222  			numLines = defaultTailLines
   223  		}
   224  
   225  		r, readErr = l.followFile(client, alloc, follow, task, logType, api.OriginEnd, offset)
   226  
   227  		// If numLines is set, wrap the reader
   228  		if numLines != -1 {
   229  			r = NewLineLimitReader(r, int(numLines), int(numLines*bytesToLines), 1*time.Second)
   230  		}
   231  
   232  		if readErr != nil {
   233  			readErr = fmt.Errorf("Error tailing file: %v", readErr)
   234  		}
   235  	}
   236  
   237  	if readErr != nil {
   238  		l.Ui.Error(readErr.Error())
   239  		return 1
   240  	}
   241  
   242  	defer r.Close()
   243  	_, err = io.Copy(os.Stdout, r)
   244  	if err != nil {
   245  		l.Ui.Error(fmt.Sprintf("error following logs: %s", err))
   246  		return 1
   247  	}
   248  
   249  	return 0
   250  }
   251  
   252  // followFile outputs the contents of the file to stdout relative to the end of
   253  // the file.
   254  func (l *AllocLogsCommand) followFile(client *api.Client, alloc *api.Allocation,
   255  	follow bool, task, logType, origin string, offset int64) (io.ReadCloser, error) {
   256  
   257  	cancel := make(chan struct{})
   258  	frames, errCh := client.AllocFS().Logs(alloc, follow, task, logType, origin, offset, cancel, nil)
   259  	select {
   260  	case err := <-errCh:
   261  		return nil, err
   262  	default:
   263  	}
   264  	signalCh := make(chan os.Signal, 1)
   265  	signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM)
   266  
   267  	// Create a reader
   268  	var r io.ReadCloser
   269  	frameReader := api.NewFrameReader(frames, errCh, cancel)
   270  	frameReader.SetUnblockTime(500 * time.Millisecond)
   271  	r = frameReader
   272  
   273  	go func() {
   274  		<-signalCh
   275  
   276  		// End the streaming
   277  		r.Close()
   278  	}()
   279  
   280  	return r, nil
   281  }
   282  
   283  func lookupAllocTask(alloc *api.Allocation) (string, error) {
   284  	tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup)
   285  	if tg == nil {
   286  		return "", fmt.Errorf("Could not find allocation task group: %s", alloc.TaskGroup)
   287  	}
   288  
   289  	if len(tg.Tasks) == 1 {
   290  		return tg.Tasks[0].Name, nil
   291  	}
   292  
   293  	var errStr strings.Builder
   294  	fmt.Fprintf(&errStr, "Allocation %q is running the following tasks:\n", limit(alloc.ID, shortId))
   295  	for _, t := range tg.Tasks {
   296  		fmt.Fprintf(&errStr, "  * %s\n", t.Name)
   297  	}
   298  	fmt.Fprintf(&errStr, "\nPlease specify the task.")
   299  	return "", errors.New(errStr.String())
   300  }