在命令行输入docker stats
即可看见docker内运行的容器的物力资源使用情况,以我的为例
这个是会一直动态展示数据,按住Ctrl C
即可退出展示。当然你也可以使用命令docker stats ---no-stream
这样子就展示当前状态就直接退出了
前面几项能明白啥意思,后面的就比较模糊,于是查阅了官方文档
Column name | Description |
---|---|
CONTAINER ID and Name
|
the ID and name of the container |
CPU % and MEM %
|
the percentage of the host’s CPU and memory the container is using |
MEM USAGE / LIMIT |
the total memory the container is using, and the total amount of memory it is allowed to use |
NET I/O |
The amount of data the container has sent and received over its network interface |
BLOCK I/O |
The amount of data the container has read to and written from block devices on the host |
PIDs |
the number of processes or threads the container has created |
给大家翻译一下
Column name | Description |
---|---|
CONTAINER ID and Name
|
|
CPU % and MEM %
|
容器正在使用的主机CPU和内存的百分比 |
MEM USAGE / LIMIT |
容器正在使用的总内存以及允许使用的总内存量 |
NET I/O |
容器通过其网络接口发送和接收的总数据量 |
BLOCK I/O |
容器已从主机上的块设备读取和写入的数据量 |
PIDs |
容器创建的进程或线程数 |