summaryrefslogtreecommitdiff
path: root/cmd/podman/top.go
blob: f1f594ebf29847a0bc1e50953cf48c6551671196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package main

import (
	"fmt"
	"os"
	"strings"
	"text/tabwriter"

	"github.com/containers/libpod/cmd/podman/cliconfig"
	"github.com/containers/libpod/libpod"
	"github.com/containers/libpod/pkg/adapter"
	"github.com/pkg/errors"
	"github.com/spf13/cobra"
)

func getDescriptorString() string {
	descriptors, err := libpod.GetContainerPidInformationDescriptors()
	if err == nil {
		return fmt.Sprintf(`
  Format Descriptors:
    %s`, strings.Join(descriptors, ","))
	}
	return ""
}

var (
	topCommand     cliconfig.TopValues
	topDescription = fmt.Sprintf(`Similar to system "top" command.

  Specify format descriptors to alter the output.

  Running "podman top -l pid pcpu seccomp" will print the process ID, the CPU percentage and the seccomp mode of each process of the latest container.
%s`, getDescriptorString())

	_topCommand = &cobra.Command{
		Use:   "top [flags] CONTAINER [FORMAT-DESCRIPTORS]",
		Short: "Display the running processes of a container",
		Long:  topDescription,
		RunE: func(cmd *cobra.Command, args []string) error {
			topCommand.InputArgs = args
			topCommand.GlobalFlags = MainGlobalOpts
			topCommand.Remote = remoteclient
			return topCmd(&topCommand)
		},
		Example: `podman top ctrID
  podman top --latest
  podman top ctrID pid seccomp args %C`,
	}
)

func init() {
	topCommand.Command = _topCommand
	topCommand.SetHelpTemplate(HelpTemplate())
	topCommand.SetUsageTemplate(UsageTemplate())
	flags := topCommand.Flags()
	flags.BoolVar(&topCommand.ListDescriptors, "list-descriptors", false, "")
	flags.MarkHidden("list-descriptors")
	flags.BoolVarP(&topCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
	markFlagHiddenForRemoteClient("latest", flags)
}

func topCmd(c *cliconfig.TopValues) error {
	var err error
	args := c.InputArgs

	if c.ListDescriptors {
		descriptors, err := libpod.GetContainerPidInformationDescriptors()
		if err != nil {
			return err
		}
		fmt.Println(strings.Join(descriptors, "\n"))
		return nil
	}

	if len(args) < 1 && !c.Latest {
		return errors.Errorf("you must provide the name or id of a running container")
	}

	runtime, err := adapter.GetRuntime(&c.PodmanCommand)
	if err != nil {
		return errors.Wrapf(err, "error creating libpod runtime")
	}
	defer runtime.Shutdown(false)

	psOutput, err := runtime.Top(c)
	if err != nil {
		return err
	}
	w := tabwriter.NewWriter(os.Stdout, 5, 1, 3, ' ', 0)
	for _, proc := range psOutput {
		fmt.Fprintln(w, proc)
	}
	w.Flush()
	return nil
}