mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0640a14b4f
Using gomvpkg -from github.com/docker/docker/api/client -to github.com/docker/docker/cli/command -vcs_mv_cmd 'git mv {{.Src}} {{.Dst}}' Signed-off-by: Daniel Nephin <dnephin@docker.com>
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
package container
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"text/tabwriter"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
"github.com/docker/docker/cli"
|
|
"github.com/docker/docker/cli/command"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type topOptions struct {
|
|
container string
|
|
|
|
args []string
|
|
}
|
|
|
|
// NewTopCommand creates a new cobra.Command for `docker top`
|
|
func NewTopCommand(dockerCli *command.DockerCli) *cobra.Command {
|
|
var opts topOptions
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "top CONTAINER [ps OPTIONS]",
|
|
Short: "Display the running processes of a container",
|
|
Args: cli.RequiresMinArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
opts.container = args[0]
|
|
opts.args = args[1:]
|
|
return runTop(dockerCli, &opts)
|
|
},
|
|
}
|
|
|
|
flags := cmd.Flags()
|
|
flags.SetInterspersed(false)
|
|
|
|
return cmd
|
|
}
|
|
|
|
func runTop(dockerCli *command.DockerCli, opts *topOptions) error {
|
|
ctx := context.Background()
|
|
|
|
procList, err := dockerCli.Client().ContainerTop(ctx, opts.container, opts.args)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
w := tabwriter.NewWriter(dockerCli.Out(), 20, 1, 3, ' ', 0)
|
|
fmt.Fprintln(w, strings.Join(procList.Titles, "\t"))
|
|
|
|
for _, proc := range procList.Processes {
|
|
fmt.Fprintln(w, strings.Join(proc, "\t"))
|
|
}
|
|
w.Flush()
|
|
return nil
|
|
}
|