Linux命令(129)之dstat

简介: Linux命令(129)之dstat

linux命令之dstat

1.dstat介绍
linux命令dstat是用来实时显示系统中各个进程的资源占用情况

2.dstat用法
dstat [参数]

dstat参数
参数 说明
-c 显示CPU的相关信息
-d 显示磁盘的相关信息
-g 显示page相关的统计数据
-m 显示内存的相关统计数据
-n 显示网络的相关统计数据
-p 显示进程的相关统计数据
-r 显示io请求的相关的统计数据
-s 显示swap相关的统计数据
--tcp 启用tcp相关的统计数据
--udp 启用udp相关的统计数据
--raw 启用raw相关的统计数据
--socket 启用socket相关的统计数据
--top-cpu 显示最占用cpu的进程
--top-io 显示最占用io的进程
--top-mem 显示最占用内存的进程
3.实例
3.1.显示dstat的帮助信息
命令:

dstat -h

[root@centos79 ~]# dstat -h
Usage: dstat [-afv] [options..] [delay [count]]
Versatile tool for generating system resource statistics

Dstat options:
-c, --cpu enable cpu stats
-C 0,3,total include cpu0, cpu3 and total
-d, --disk enable disk stats
-D total,hda include hda and total
-g, --page enable page stats
-i, --int enable interrupt stats
-I 5,eth2 include int5 and interrupt used by eth2
-l, --load enable load stats
-m, --mem enable memory stats
-n, --net enable network stats
-N eth1,total include eth1 and total
-p, --proc enable process stats
-r, --io enable io stats (I/O requests completed)
-s, --swap enable swap stats
-S swap1,total include swap1 and total
-t, --time enable time/date output
-T, --epoch enable time counter (seconds since epoch)
-y, --sys enable system stats

--aio enable aio stats
--fs, --filesystem enable fs stats
--ipc enable ipc stats
--lock enable lock stats
--raw enable raw stats
--socket enable socket stats
--tcp enable tcp stats
--udp enable udp stats
--unix enable unix stats
--vm enable vm stats

--plugin-name enable plugins by plugin name (see manual)
--list list all available plugins

-a, --all equals -cdngy (default)
-f, --full automatically expand -C, -D, -I, -N and -S lists
-v, --vmstat equals -pmgdsc -D total

--bits force bits for values expressed in bytes
--float force float values on screen
--integer force integer values on screen

--bw, --blackonwhite change colors for white background terminal
--nocolor disable colors (implies --noupdate)
--noheaders disable repetitive headers
--noupdate disable intermediate updates
--output file write CSV output to file
--profile show profiling statistics when exiting dstat

delay is the delay in seconds between each update (default: 1)
count is the number of updates to display before exiting (default: unlimited)

[root@centos79 ~]#

3.2.实时显示系统中各个进程的资源占用情况
命令:

dstat

You did not select any stats, using -cdngy by default.
----total-cpu-usage---- -dsk/total- -net/total- ---paging-- ---system--
usr sys idl wai hiq siq| read writ| recv send| in out | int csw
3 1 91 4 0 0| 434k 34k| 0 0 | 0 0 | 539 876
1 1 99 0 0 0| 0 0 | 12k 13k| 0 0 | 403 748
0 1 99 0 0 0| 0 0 |2482B 2938B| 0 0 | 334 694 ^C
[root@centos79 ~]#
3.3.显示cpu的相关信息
命令:

dstat -c

[root@centos79 ~]# dstat -c
----total-cpu-usage----
usr sys idl wai hiq siq
3 1 91 4 0 0
0 1 99 0 0 0
0 0 100 0 0 0
1 0 99 0 0 1^C
[root@centos79 ~]#
3.4.显示内存的相关信息
命令:

dstat -m

[root@centos79 ~]# dstat -m
------memory-usage-----
used buff cach free
7118M 1176k 1383M 1477M
7118M 1176k 1383M 1477M
7118M 1176k 1383M 1477M^C
[root@centos79 ~]#
3.5.显示page相关的统计数据
命令:

dstat -g

[root@centos79 ~]# dstat -g
---paging--
in out
0 0
0 0
0 0
0 0 ^C
[root@centos79 ~]#
3.6.显示磁盘相关的统计数据
命令:

dstat -d

[root@centos79 ~]# dstat -d
-dsk/total-
read writ
415k 33k
0 0
0 0 ^C
[root@centos79 ~]#
3.7.显示网络相关的统计数据
命令:

dstat -n

[root@centos79 ~]# dstat -n
-net/total-
recv send
0 0
1476B 1802B
16k 16k
1476B 1754B
2482B 2746B^C
[root@centos79 ~]#
3.8.显示进程相关的统计数据
命令:

dstat -p

[root@centos79 ~]# dstat -p
---procs---
run blk new
0 0 1.5
0 0 0
0 0 0
0 0 0^C
[root@centos79 ~]#
3.9.显示io请求相关的统计数据
命令:

dstat -r

[root@centos79 ~]# dstat -r
--io/total-
read writ
10.2 2.04
0 0
0 0
0 0 ^C
[root@centos79 ~]#
3.10.显示swap相关的统计数据
命令:

dstat -s

[root@centos79 ~]# dstat -s
----swap---
used free
0 3072M
0 3072M
0 3072M
0 3072M^C
[root@centos79 ~]#
3.11.启用tcp的统计数据
命令:

dstat --tcp

[root@centos79 ~]# dstat --tcp
----tcp-sockets----
lis act syn tim clo
35 28 0 0 0
35 28 0 0 0
35 28 0 0 0^C
[root@centos79 ~]#
3.12.启用udp的统计数据
命令:

dstat --udp

[root@centos79 ~]# dstat --udp
--udp--
lis act
10 0
10 0
10 0
10 0^C
[root@centos79 ~]#
3.13.启用raw的统计数据
命令:

dstat --raw

[root@centos79 ~]# dstat --raw
raw
raw
0
0
0
0^C
[root@centos79 ~]#
3.14.启用socket的统计数据
命令:

dstat --socket

[root@centos79 ~]# dstat --socket
------sockets------
tot tcp udp raw frg
3 46 7 0 0
3 46 7 0 0
3 46 7 0 0
3 46 7 0 0^C
[root@centos79 ~]#
3.15.显示最占用 cpu 的进程
命令:

dstat --top-cpu

[root@centos79 ~]# dstat --top-cpu
-most-expensive-
cpu process
java 1.4
java 1.0
node 0.5^C
[root@centos79 ~]#
3.16.显示最占用 io 的进程
命令:

dstat --top-io

[root@centos79 ~]# dstat --top-io
----most-expensive----
i/o process
bash 278k 7109B
java 133k 932B
java 2806B 0
vmtoolsd 11k 0 ^C
[root@centos79 ~]#
3.17.显示最占用内存的进程
dstat --top-mem

[root@centos79 ~]# dstat --top-mem
--most-expensive-
memory process
java 4535M
java 4535M
java 4535M^C

————————————————
版权声明:本文为CSDN博主「小黑要上天」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/z19861216/article/details/134499273

目录
相关文章
|
1月前
|
Linux 网络安全 数据安全/隐私保护
Linux 超级强大的十六进制 dump 工具:XXD 命令,我教你应该如何使用!
在 Linux 系统中,xxd 命令是一个强大的十六进制 dump 工具,可以将文件或数据以十六进制和 ASCII 字符形式显示,帮助用户深入了解和分析数据。本文详细介绍了 xxd 命令的基本用法、高级功能及实际应用案例,包括查看文件内容、指定输出格式、写入文件、数据比较、数据提取、数据转换和数据加密解密等。通过掌握这些技巧,用户可以更高效地处理各种数据问题。
106 8
|
1月前
|
监控 Linux
如何检查 Linux 内存使用量是否耗尽?这 5 个命令堪称绝了!
本文介绍了在Linux系统中检查内存使用情况的5个常用命令:`free`、`top`、`vmstat`、`pidstat` 和 `/proc/meminfo` 文件,帮助用户准确监控内存状态,确保系统稳定运行。
366 6
|
1月前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
86 3
|
1月前
|
监控 安全 Linux
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景,包括 ping(测试连通性)、traceroute(跟踪路由路径)、netstat(显示网络连接信息)、nmap(网络扫描)、ifconfig 和 ip(网络接口配置)。掌握这些命令有助于高效诊断和解决网络问题,保障网络稳定运行。
79 2
|
19天前
|
Linux Shell
Linux 10 个“who”命令示例
Linux 10 个“who”命令示例
49 14
Linux 10 个“who”命令示例
|
8天前
|
Ubuntu Linux
Linux 各发行版安装 ping 命令指南
如何在不同 Linux 发行版(Ubuntu/Debian、CentOS/RHEL/Fedora、Arch Linux、openSUSE、Alpine Linux)上安装 `ping` 命令,详细列出各发行版的安装步骤和验证方法,帮助系统管理员和网络工程师快速排查网络问题。
75 20
|
8天前
|
网络协议 Linux 应用服务中间件
kali的常用命令汇总Linux
kali的常用命令汇总linux
32 7
|
28天前
|
Linux 数据库
Linux中第一次使用locate命令报错?????
在Linux CentOS7系统中,使用`locate`命令时出现“command not found”错误,原因是缺少`mlocate`包。解决方法是通过`yum install mlocate -y`或`apt-get install mlocate`安装该包,并执行`updatedb`更新数据库以解决后续的“can not stat”错误。
33 9
|
26天前
|
监控 网络协议 Linux
Linux netstat 命令详解
Linux netstat 命令详解
|
1月前
|
运维 监控 网络协议
运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面
本文介绍了运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面,旨在帮助读者提高工作效率。从基本的文件查看与编辑,到高级的网络配置与安全管理,这些命令是运维工作中的必备工具。
126 3