2016-09-06 14:46:37 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/url"
|
|
|
|
|
2016-09-07 19:08:51 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2016-09-06 14:46:37 -04:00
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ContainerStats returns near realtime stats for a given container.
|
|
|
|
// It's up to the caller to close the io.ReadCloser returned.
|
2016-09-07 19:08:51 -04:00
|
|
|
func (cli *Client) ContainerStats(ctx context.Context, containerID string, stream bool) (types.ContainerStats, error) {
|
2016-09-06 14:46:37 -04:00
|
|
|
query := url.Values{}
|
|
|
|
query.Set("stream", "0")
|
|
|
|
if stream {
|
|
|
|
query.Set("stream", "1")
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := cli.get(ctx, "/containers/"+containerID+"/stats", query, nil)
|
|
|
|
if err != nil {
|
2016-09-07 19:08:51 -04:00
|
|
|
return types.ContainerStats{}, err
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
2016-09-07 19:08:51 -04:00
|
|
|
|
2016-11-09 17:46:53 -05:00
|
|
|
osType := getDockerOS(resp.header.Get("Server"))
|
2016-09-07 19:08:51 -04:00
|
|
|
return types.ContainerStats{Body: resp.body, OSType: osType}, err
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|