NAME 名称

podman-pod-stats - Display a live stream of resource usage stats for containers in one or more pods
podman-pod-stats - 显示一个或多个 pod 中容器资源使用统计的实时流

SYNOPSIS 概要

podman pod stats [options] [pod]
podman pod stats [选项] [pod]

DESCRIPTION 描述

Display a live stream of containers in one or more pods resource usage statistics. Running rootless is only supported on cgroups v2.
显示一个或多个 pod 中容器资源使用统计的实时流。仅在 cgroups v2 上支持以非 root 用户身份运行。

OPTIONS 选项

--all, -a

Show all containers. Only running containers are shown by default
显示所有容器。默认情况下只显示正在运行的容器

--format=template --format=template

Pretty-print container statistics to JSON or using a Go template
将容器统计信息漂亮地打印成 JSON 或使用 Go 模板

Valid placeholders for the Go template are listed below:
Go 模板的有效占位符如下所示:

Placeholder

Description

.BlockIO

Block IO 块 IO

.CID

Container ID 容器 ID

.CPU

CPU percentage CPU 百分比

.Mem

Memory percentage 内存百分比

.MemUsage

Memory usage 内存使用量

.MemUsageBytes

Memory usage (IEC) 内存使用量(IEC)

.Name

Container Name 容器名称

.NetIO

Network IO 网络 IO

.PIDS

Number of PIDs 进程 ID 数量

.Pod

Pod ID

When using a Go template, precede the format with table to print headers.
在使用 Go 模板时,要在格式之前加上 table 以打印标题。

--latest, -l

Instead of providing the pod name or ID, use the last created pod. Note: the last started pod can be from other users of Podman on the host machine. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines)
而不是提供 Pod 名称或 ID,请使用最后创建的 Pod。注意:最后启动的 Pod 可能来自主机上其他 Podman 用户。(此选项不适用于远程 Podman 客户端,包括 Mac 和 Windows(不包括 WSL2)机器)

--no-reset

Do not clear the terminal/screen in between reporting intervals
在报告间隔之间不清除终端/屏幕

--no-stream

Disable streaming pod stats and only pull the first result, default setting is false
禁用流式传输 pod 统计信息,仅拉取第一个结果,默认设置为 false

EXAMPLE 例子 ¶

List statistics about all pods without streaming:
列出所有 pod 的统计信息,不使用流式传输:

# podman pod stats -a --no-stream
ID             NAME              CPU %   MEM USAGE / LIMIT   MEM %   NET IO    BLOCK IO   PIDS
a9f807ffaacd   frosty_hodgkin    --      3.092MB / 16.7GB    0.02%   -- / --   -- / --    2
3b33001239ee   sleepy_stallman   --      -- / --             --      -- / --   -- / --    --

List statistics about specified pod without streaming:
列出指定 pod 的统计信息,不使用流式传输:

# podman pod stats --no-stream a9f80
ID             NAME             CPU %   MEM USAGE / LIMIT   MEM %   NET IO    BLOCK IO   PIDS
a9f807ffaacd   frosty_hodgkin   --      3.092MB / 16.7GB    0.02%   -- / --   -- / --    2

List statistics about specified pod in JSON format without streaming:
在不进行流式处理的情况下,以 JSON 格式列出指定 pod 的统计信息:

# podman pod stats --no-stream --format=json a9f80
[
    {
        "id": "a9f807ffaacd",
        "name": "frosty_hodgkin",
        "cpu_percent": "--",
        "mem_usage": "3.092MB / 16.7GB",
        "mem_percent": "0.02%",
        "netio": "-- / --",
        "blocki": "-- / --",
        "pids": "2"
    }
]

List selected statistics formatted in a table about specified pod:
以表格格式列出指定 pod 的选定统计信息:

# podman pod stats --no-stream --format "table {{.ID}} {{.Name}} {{.MemUsage}}" 6eae
ID             NAME           MEM USAGE / LIMIT
6eae9e25a564   clever_bassi   3.031MB / 16.7GB

SEE ALSO 参见 ¶

podman(1), podman-pod(1)

HISTORY 历史 ¶

February 2019, Originally compiled by Dan Walsh dwalsh@redhat.com
2019 年 2 月,最初由 Dan Walsh dwalsh@redhat.com 编译。