mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0b0431a856
Signed-off-by: David Calavera <david.calavera@gmail.com>
27 lines
647 B
Go
27 lines
647 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 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
|
|
}
|