diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-09-24 15:32:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-24 15:32:36 +0000 |
commit | 3957058f298f03bf57b0bac17f5c4d7f274e9ecb (patch) | |
tree | 6fd129d525e79eac10febb9207172e090e3da944 /pkg/domain/infra/tunnel/containers.go | |
parent | 08cc91926db1cd17509f8578e2ff00a94747dbd4 (diff) | |
parent | 19b955f0999f7fe9e187e94d60327e4d6ee891c0 (diff) | |
download | podman-3957058f298f03bf57b0bac17f5c4d7f274e9ecb.tar.gz podman-3957058f298f03bf57b0bac17f5c4d7f274e9ecb.tar.bz2 podman-3957058f298f03bf57b0bac17f5c4d7f274e9ecb.zip |
Merge pull request #7753 from vrothberg/fix-7689
remote stats
Diffstat (limited to 'pkg/domain/infra/tunnel/containers.go')
-rw-r--r-- | pkg/domain/infra/tunnel/containers.go | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pkg/domain/infra/tunnel/containers.go b/pkg/domain/infra/tunnel/containers.go index 7ea3b16a6..9b03503c6 100644 --- a/pkg/domain/infra/tunnel/containers.go +++ b/pkg/domain/infra/tunnel/containers.go @@ -722,6 +722,9 @@ func (ic *ContainerEngine) ContainerCp(ctx context.Context, source, dest string, func (ic *ContainerEngine) Shutdown(_ context.Context) { } -func (ic *ContainerEngine) ContainerStats(ctx context.Context, namesOrIds []string, options entities.ContainerStatsOptions) error { - return errors.New("not implemented") +func (ic *ContainerEngine) ContainerStats(ctx context.Context, namesOrIds []string, options entities.ContainerStatsOptions) (statsChan chan entities.ContainerStatsReport, err error) { + if options.Latest { + return nil, errors.New("latest is not supported for the remote client") + } + return containers.Stats(ic.ClientCxt, namesOrIds, &options.Stream) } |