(ctx context.Context, options container.ListOptions)
| 34 | // statsClient defines the Docker API operations needed by the scraper |
| 35 | type statsClient interface { |
| 36 | ContainerList(ctx context.Context, options container.ListOptions) ([]container.Summary, error) |
| 37 | ContainerStats(ctx context.Context, containerID string, stream bool) (container.StatsResponseReader, error) |
| 38 | } |
| 39 |
no outgoing calls