2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-09-06 14:46:37 -04:00
|
|
|
"net/url"
|
|
|
|
|
2016-09-07 19:08:51 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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
|
|
|
}
|
2020-02-07 18:55:06 -05:00
|
|
|
|
|
|
|
// ContainerStatsOneShot gets a single stat entry from a container.
|
|
|
|
// It differs from `ContainerStats` in that the API should not wait to prime the stats
|
|
|
|
func (cli *Client) ContainerStatsOneShot(ctx context.Context, containerID string) (types.ContainerStats, error) {
|
|
|
|
query := url.Values{}
|
|
|
|
query.Set("stream", "0")
|
|
|
|
query.Set("one-shot", "1")
|
|
|
|
|
|
|
|
resp, err := cli.get(ctx, "/containers/"+containerID+"/stats", query, nil)
|
|
|
|
if err != nil {
|
|
|
|
return types.ContainerStats{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
osType := getDockerOS(resp.header.Get("Server"))
|
|
|
|
return types.ContainerStats{Body: resp.body, OSType: osType}, err
|
|
|
|
}
|