mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 12:21:03 +00:00
29 lines
739 B
Go
29 lines
739 B
Go
|
package docker // import "docker.io/go-docker"
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"net/url"
|
||
|
"strings"
|
||
|
|
||
|
"docker.io/go-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
|
||
|
}
|