2016-06-06 12:47:18 -04:00
|
|
|
package container
|
2015-03-24 23:57:23 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"strings"
|
2016-03-01 02:09:48 -05:00
|
|
|
"sync"
|
2015-03-24 23:57:23 -04:00
|
|
|
"time"
|
|
|
|
|
2016-02-03 18:41:26 -05:00
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/api/types/events"
|
|
|
|
"github.com/docker/docker/api/types/filters"
|
2016-06-06 12:47:18 -04:00
|
|
|
"github.com/docker/docker/cli"
|
2016-09-08 13:11:39 -04:00
|
|
|
"github.com/docker/docker/cli/command"
|
2016-07-18 14:30:15 -04:00
|
|
|
"github.com/docker/docker/cli/command/formatter"
|
2016-06-06 12:47:18 -04:00
|
|
|
"github.com/spf13/cobra"
|
2015-03-24 23:57:23 -04:00
|
|
|
)
|
|
|
|
|
2016-06-06 12:47:18 -04:00
|
|
|
type statsOptions struct {
|
2016-07-18 14:30:15 -04:00
|
|
|
all bool
|
|
|
|
noStream bool
|
|
|
|
format string
|
2016-06-06 12:47:18 -04:00
|
|
|
containers []string
|
|
|
|
}
|
2015-07-03 05:26:09 -04:00
|
|
|
|
2016-07-16 05:55:18 -04:00
|
|
|
// NewStatsCommand creates a new cobra.Command for `docker stats`
|
2016-09-08 13:11:39 -04:00
|
|
|
func NewStatsCommand(dockerCli *command.DockerCli) *cobra.Command {
|
2016-06-06 12:47:18 -04:00
|
|
|
var opts statsOptions
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "stats [OPTIONS] [CONTAINER...]",
|
|
|
|
Short: "Display a live stream of container(s) resource usage statistics",
|
|
|
|
Args: cli.RequiresMinArgs(0),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
opts.containers = args
|
|
|
|
return runStats(dockerCli, &opts)
|
|
|
|
},
|
|
|
|
}
|
2015-03-24 23:57:23 -04:00
|
|
|
|
2016-06-06 12:47:18 -04:00
|
|
|
flags := cmd.Flags()
|
|
|
|
flags.BoolVarP(&opts.all, "all", "a", false, "Show all containers (default shows just running)")
|
|
|
|
flags.BoolVar(&opts.noStream, "no-stream", false, "Disable streaming stats and only pull the first result")
|
2016-07-18 14:30:15 -04:00
|
|
|
flags.StringVar(&opts.format, "format", "", "Pretty-print images using a Go template")
|
2016-06-06 12:47:18 -04:00
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
// runStats displays a live stream of resource usage statistics for one or more containers.
|
|
|
|
// This shows real-time information on CPU usage, memory usage, and network I/O.
|
2016-09-08 13:11:39 -04:00
|
|
|
func runStats(dockerCli *command.DockerCli, opts *statsOptions) error {
|
2016-06-06 12:47:18 -04:00
|
|
|
showAll := len(opts.containers) == 0
|
2016-02-29 14:24:51 -05:00
|
|
|
closeChan := make(chan error)
|
2016-02-27 21:30:31 -05:00
|
|
|
|
2016-05-21 09:57:57 -04:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2016-02-27 21:30:31 -05:00
|
|
|
// monitorContainerEvents watches for container creation and removal (only
|
|
|
|
// used when calling `docker stats` without arguments).
|
2016-02-29 14:24:51 -05:00
|
|
|
monitorContainerEvents := func(started chan<- struct{}, c chan events.Message) {
|
2016-02-27 21:30:31 -05:00
|
|
|
f := filters.NewArgs()
|
|
|
|
f.Add("type", "container")
|
|
|
|
options := types.EventsOptions{
|
|
|
|
Filters: f,
|
|
|
|
}
|
2016-08-09 16:34:07 -04:00
|
|
|
|
|
|
|
eventq, errq := dockerCli.Client().Events(ctx, options)
|
|
|
|
|
|
|
|
// Whether we successfully subscribed to eventq or not, we can now
|
2016-02-27 21:30:31 -05:00
|
|
|
// unblock the main goroutine.
|
|
|
|
close(started)
|
2016-02-29 14:24:51 -05:00
|
|
|
|
2016-08-09 16:34:07 -04:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case event := <-eventq:
|
|
|
|
c <- event
|
|
|
|
case err := <-errq:
|
2016-02-29 14:24:51 -05:00
|
|
|
closeChan <- err
|
2016-08-09 16:34:07 -04:00
|
|
|
return
|
2016-02-27 21:30:31 -05:00
|
|
|
}
|
2016-08-09 16:34:07 -04:00
|
|
|
}
|
2016-02-27 21:30:31 -05:00
|
|
|
}
|
|
|
|
|
2016-10-25 19:19:14 -04:00
|
|
|
// Get the daemonOSType if not set already
|
|
|
|
if daemonOSType == "" {
|
|
|
|
svctx := context.Background()
|
|
|
|
sv, err := dockerCli.Client().ServerVersion(svctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
daemonOSType = sv.Os
|
|
|
|
}
|
|
|
|
|
2016-03-01 02:09:48 -05:00
|
|
|
// waitFirst is a WaitGroup to wait first stat data's reach for each container
|
|
|
|
waitFirst := &sync.WaitGroup{}
|
|
|
|
|
2016-02-29 14:24:51 -05:00
|
|
|
cStats := stats{}
|
2016-02-27 21:30:31 -05:00
|
|
|
// getContainerList simulates creation event for all previously existing
|
|
|
|
// containers (only used when calling `docker stats` without arguments).
|
2016-02-29 14:24:51 -05:00
|
|
|
getContainerList := func() {
|
2015-12-06 02:34:23 -05:00
|
|
|
options := types.ContainerListOptions{
|
2016-06-06 12:47:18 -04:00
|
|
|
All: opts.all,
|
2015-10-03 08:53:25 -04:00
|
|
|
}
|
2016-06-06 12:47:18 -04:00
|
|
|
cs, err := dockerCli.Client().ContainerList(ctx, options)
|
2015-10-03 08:53:25 -04:00
|
|
|
if err != nil {
|
2016-02-29 14:24:51 -05:00
|
|
|
closeChan <- err
|
2015-10-03 08:53:25 -04:00
|
|
|
}
|
2016-02-29 14:24:51 -05:00
|
|
|
for _, container := range cs {
|
2016-07-18 14:30:15 -04:00
|
|
|
s := formatter.NewContainerStats(container.ID[:12], daemonOSType)
|
2016-03-01 02:09:48 -05:00
|
|
|
if cStats.add(s) {
|
|
|
|
waitFirst.Add(1)
|
2016-11-12 01:14:34 -05:00
|
|
|
go collect(ctx, s, dockerCli.Client(), !opts.noStream, waitFirst)
|
2016-03-01 02:09:48 -05:00
|
|
|
}
|
2015-10-03 08:53:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-27 21:30:31 -05:00
|
|
|
if showAll {
|
|
|
|
// If no names were specified, start a long running goroutine which
|
|
|
|
// monitors container events. We make sure we're subscribed before
|
|
|
|
// retrieving the list of running containers to avoid a race where we
|
|
|
|
// would "miss" a creation.
|
|
|
|
started := make(chan struct{})
|
2016-09-22 17:04:34 -04:00
|
|
|
eh := command.InitEventHandler()
|
2016-02-29 14:24:51 -05:00
|
|
|
eh.Handle("create", func(e events.Message) {
|
2016-06-06 12:47:18 -04:00
|
|
|
if opts.all {
|
2016-07-18 14:30:15 -04:00
|
|
|
s := formatter.NewContainerStats(e.ID[:12], daemonOSType)
|
2016-03-01 02:09:48 -05:00
|
|
|
if cStats.add(s) {
|
|
|
|
waitFirst.Add(1)
|
2016-11-12 01:14:34 -05:00
|
|
|
go collect(ctx, s, dockerCli.Client(), !opts.noStream, waitFirst)
|
2016-03-01 02:09:48 -05:00
|
|
|
}
|
2016-02-29 14:24:51 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
eh.Handle("start", func(e events.Message) {
|
2016-07-18 14:30:15 -04:00
|
|
|
s := formatter.NewContainerStats(e.ID[:12], daemonOSType)
|
2016-03-01 02:09:48 -05:00
|
|
|
if cStats.add(s) {
|
|
|
|
waitFirst.Add(1)
|
2016-11-12 01:14:34 -05:00
|
|
|
go collect(ctx, s, dockerCli.Client(), !opts.noStream, waitFirst)
|
2016-03-01 02:09:48 -05:00
|
|
|
}
|
2016-02-29 14:24:51 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
eh.Handle("die", func(e events.Message) {
|
2016-06-06 12:47:18 -04:00
|
|
|
if !opts.all {
|
2016-02-29 14:24:51 -05:00
|
|
|
cStats.remove(e.ID[:12])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
eventChan := make(chan events.Message)
|
|
|
|
go eh.Watch(eventChan)
|
|
|
|
go monitorContainerEvents(started, eventChan)
|
|
|
|
defer close(eventChan)
|
2016-02-27 21:30:31 -05:00
|
|
|
<-started
|
|
|
|
|
|
|
|
// Start a short-lived goroutine to retrieve the initial list of
|
|
|
|
// containers.
|
2016-03-01 02:09:48 -05:00
|
|
|
getContainerList()
|
2015-10-03 08:53:25 -04:00
|
|
|
} else {
|
2016-02-27 21:30:31 -05:00
|
|
|
// Artificially send creation events for the containers we were asked to
|
|
|
|
// monitor (same code path than we use when monitoring all containers).
|
2016-06-06 12:47:18 -04:00
|
|
|
for _, name := range opts.containers {
|
2016-07-18 14:30:15 -04:00
|
|
|
s := formatter.NewContainerStats(name, daemonOSType)
|
2016-03-01 02:09:48 -05:00
|
|
|
if cStats.add(s) {
|
|
|
|
waitFirst.Add(1)
|
2016-11-12 01:14:34 -05:00
|
|
|
go collect(ctx, s, dockerCli.Client(), !opts.noStream, waitFirst)
|
2016-03-01 02:09:48 -05:00
|
|
|
}
|
2016-02-27 21:30:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// We don't expect any asynchronous errors: closeChan can be closed.
|
2015-10-03 08:53:25 -04:00
|
|
|
close(closeChan)
|
2016-02-27 21:30:31 -05:00
|
|
|
|
|
|
|
// Do a quick pause to detect any error with the provided list of
|
|
|
|
// container names.
|
|
|
|
time.Sleep(1500 * time.Millisecond)
|
|
|
|
var errs []string
|
|
|
|
cStats.mu.Lock()
|
|
|
|
for _, c := range cStats.cs {
|
2016-09-22 08:54:41 -04:00
|
|
|
cErr := c.GetError()
|
|
|
|
if cErr != nil {
|
|
|
|
errs = append(errs, fmt.Sprintf("%s: %v", c.Name, cErr))
|
2016-02-27 21:30:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
cStats.mu.Unlock()
|
|
|
|
if len(errs) > 0 {
|
|
|
|
return fmt.Errorf("%s", strings.Join(errs, ", "))
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
|
|
|
}
|
2016-02-27 21:30:31 -05:00
|
|
|
|
2016-03-01 02:09:48 -05:00
|
|
|
// before print to screen, make sure each container get at least one valid stat data
|
|
|
|
waitFirst.Wait()
|
2016-10-28 14:48:25 -04:00
|
|
|
format := opts.format
|
|
|
|
if len(format) == 0 {
|
|
|
|
if len(dockerCli.ConfigFile().StatsFormat) > 0 {
|
|
|
|
format = dockerCli.ConfigFile().StatsFormat
|
|
|
|
} else {
|
|
|
|
format = formatter.TableFormatKey
|
|
|
|
}
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
|
|
|
statsCtx := formatter.Context{
|
|
|
|
Output: dockerCli.Out(),
|
2016-10-28 14:48:25 -04:00
|
|
|
Format: formatter.NewStatsFormat(format, daemonOSType),
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
2016-09-22 08:54:41 -04:00
|
|
|
cleanScreen := func() {
|
2016-06-06 12:47:18 -04:00
|
|
|
if !opts.noStream {
|
|
|
|
fmt.Fprint(dockerCli.Out(), "\033[2J")
|
|
|
|
fmt.Fprint(dockerCli.Out(), "\033[H")
|
2016-02-27 21:30:31 -05:00
|
|
|
}
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
2016-02-29 14:24:51 -05:00
|
|
|
|
2016-07-18 14:30:15 -04:00
|
|
|
var err error
|
2015-04-20 04:08:01 -04:00
|
|
|
for range time.Tick(500 * time.Millisecond) {
|
2016-09-22 08:54:41 -04:00
|
|
|
cleanScreen()
|
|
|
|
ccstats := []formatter.StatsEntry{}
|
|
|
|
cStats.mu.Lock()
|
|
|
|
for _, c := range cStats.cs {
|
|
|
|
ccstats = append(ccstats, c.GetStatistics())
|
|
|
|
}
|
|
|
|
cStats.mu.Unlock()
|
|
|
|
if err = formatter.ContainerStatsWrite(statsCtx, ccstats); err != nil {
|
2016-07-18 14:30:15 -04:00
|
|
|
break
|
2016-06-23 12:49:45 -04:00
|
|
|
}
|
2016-09-22 08:54:41 -04:00
|
|
|
if len(cStats.cs) == 0 && !showAll {
|
2016-07-18 14:30:15 -04:00
|
|
|
break
|
2016-06-23 12:49:45 -04:00
|
|
|
}
|
2016-06-06 12:47:18 -04:00
|
|
|
if opts.noStream {
|
2015-02-13 11:45:04 -05:00
|
|
|
break
|
|
|
|
}
|
2015-10-03 08:53:25 -04:00
|
|
|
select {
|
|
|
|
case err, ok := <-closeChan:
|
|
|
|
if ok {
|
|
|
|
if err != nil {
|
|
|
|
// this is suppressing "unexpected EOF" in the cli when the
|
2015-12-10 01:57:25 -05:00
|
|
|
// daemon restarts so it shutdowns cleanly
|
2015-10-03 08:53:25 -04:00
|
|
|
if err == io.ErrUnexpectedEOF {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
// just skip
|
|
|
|
}
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
2016-07-18 14:30:15 -04:00
|
|
|
return err
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|