Signed-off-by: David Calavera <david.calavera@gmail.com> Upstream-commit: 7573c153c5708091177aca058a3cc84a1ab58377 Component: engine
30 lines
653 B
Go
30 lines
653 B
Go
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 (
|
|
query url.Values
|
|
response types.ContainerProcessList
|
|
)
|
|
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
|
|
}
|