123456789101112131415161718192021222324252627 |
- package lib
- import (
- "encoding/json"
- "net/url"
- "strings"
- "github.com/docker/docker/api/types"
- )
- // ContainerTop shows process information from within a container.
- func (cli *Client) ContainerTop(containerID string, arguments []string) (types.ContainerProcessList, error) {
- var response types.ContainerProcessList
- query := url.Values{}
- if len(arguments) > 0 {
- query.Set("ps_args", strings.Join(arguments, " "))
- }
- resp, err := cli.get("/containers/"+containerID+"/top", query, nil)
- if err != nil {
- return response, err
- }
- defer ensureReaderClosed(resp)
- err = json.NewDecoder(resp.body).Decode(&response)
- return response, err
- }
|