markdown 如何检查进程内存消耗

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 如何检查进程内存消耗相关的知识,希望对你有一定的参考价值。

# How to check process memory consumption
You can use 'ps' command to check the virtual and physic memory used by all processes with the correct arguments.

```
$ ps -eo pid,tid,class,rtprio,stat,vsz,rss,comm
```

This shows the list of processes and the virtual (vsz) and real memory (rss) consumption, among other info.
You also can filter this with 'grep', and if you want to monitorize the size in time, use 'watch' to refresh the information periodically.

```
$ watch -n 0.5 'ps -eo pid,tid,class,rtprio,stat,vsz,rss,comm | grep app_name'
```

以上是关于markdown 如何检查进程内存消耗的主要内容,如果未能解决你的问题,请参考以下文章

Visual C++ 检查进程内存中的对象实例大小[关闭]

查看占用内存最多的进程

Prometheus:如何收集临时进程的内存消耗指标?

oom killer

列出所有进程及其当前的内存和 CPU 消耗?

Linux 查看进程消耗内存情况总结