mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
16bdbaaa33
Signed-off-by: Daniel Nephin <dnephin@docker.com>
28 lines
712 B
Go
28 lines
712 B
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/url"
|
|
"strings"
|
|
|
|
"github.com/docker/docker/api/types/container"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ContainerTop shows process information from within a container.
|
|
func (cli *Client) ContainerTop(ctx context.Context, containerID string, arguments []string) (container.ContainerTopOKBody, error) {
|
|
var response container.ContainerTopOKBody
|
|
query := url.Values{}
|
|
if len(arguments) > 0 {
|
|
query.Set("ps_args", strings.Join(arguments, " "))
|
|
}
|
|
|
|
resp, err := cli.get(ctx, "/containers/"+containerID+"/top", query, nil)
|
|
if err != nil {
|
|
return response, err
|
|
}
|
|
|
|
err = json.NewDecoder(resp.body).Decode(&response)
|
|
ensureReaderClosed(resp)
|
|
return response, err
|
|
}
|