diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-01-13 06:28:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-13 06:28:00 -0500 |
commit | 183f443a585a3659d807ee413e5b708d37a72924 (patch) | |
tree | 0290cdb28a22d59151aae228d24e10fa1b70d2af /pkg/domain/entities | |
parent | 85460bc41cb67e668bc8b7196346685691953176 (diff) | |
parent | a2367705be776d4e2b2f5ee0563c56e27ddcef8f (diff) | |
download | podman-183f443a585a3659d807ee413e5b708d37a72924.tar.gz podman-183f443a585a3659d807ee413e5b708d37a72924.tar.bz2 podman-183f443a585a3659d807ee413e5b708d37a72924.zip |
Merge pull request #8957 from srcshelton/feature/issue-8945
Add 'MemUsageBytes' format option
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/pods.go | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/pkg/domain/entities/pods.go b/pkg/domain/entities/pods.go index edb0af15a..32900d536 100644 --- a/pkg/domain/entities/pods.go +++ b/pkg/domain/entities/pods.go @@ -212,15 +212,16 @@ type PodStatsOptions struct { // PodStatsReport includes pod-resource statistics data. type PodStatsReport struct { - CPU string - MemUsage string - Mem string - NetIO string - BlockIO string - PIDS string - Pod string - CID string - Name string + CPU string + MemUsage string + MemUsageBytes string + Mem string + NetIO string + BlockIO string + PIDS string + Pod string + CID string + Name string } // ValidatePodStatsOptions validates the specified slice and options. Allows |