summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/tunnel
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-27 16:15:09 +0200
committerGitHub <noreply@github.com>2020-04-27 16:15:09 +0200
commitca1c674d2e027b563c3e9fd92c335eb3f5e5e05d (patch)
tree00dbd2d1590ed9f7fa59531dae3d1f63fdcbf014 /pkg/domain/infra/tunnel
parentfdf64f0c66be4569732b830ce60c98f98a7efe64 (diff)
parent7ee0f7e14c3105be1ef9c8aee00a09b479303677 (diff)
downloadpodman-ca1c674d2e027b563c3e9fd92c335eb3f5e5e05d.tar.gz
podman-ca1c674d2e027b563c3e9fd92c335eb3f5e5e05d.tar.bz2
podman-ca1c674d2e027b563c3e9fd92c335eb3f5e5e05d.zip
Merge pull request #5966 from vrothberg/v2-pod-stats
implement pod stats
Diffstat (limited to 'pkg/domain/infra/tunnel')
-rw-r--r--pkg/domain/infra/tunnel/pods.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/pods.go b/pkg/domain/infra/tunnel/pods.go
index e7641c077..c193c6752 100644
--- a/pkg/domain/infra/tunnel/pods.go
+++ b/pkg/domain/infra/tunnel/pods.go
@@ -211,3 +211,7 @@ func (ic *ContainerEngine) PodInspect(ctx context.Context, options entities.PodI
}
return pods.Inspect(ic.ClientCxt, options.NameOrID)
}
+
+func (ic *ContainerEngine) PodStats(ctx context.Context, namesOrIds []string, options entities.PodStatsOptions) ([]*entities.PodStatsReport, error) {
+ return pods.Stats(ic.ClientCxt, namesOrIds, options)
+}