如何获取进程的踪迹?

发布于 2024-10-18 07:44:23 字数 76 浏览 3 评论 0原文

假设有一个进程很多天都处于非活动状态,我想知道该进程处于活动状态的时间。除了日志记录之外,我还可以从哪里获取这些信息? 这是unix平台。

Suppose there is a process which is in inactive state from many days and i want to know until what time the process is in active state. Other than the log records where i can get that information?
This is unix platform.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷雾森÷林ヴ 2024-10-25 07:44:23

使用 strace 调试实用程序。您可以附加到已经运行的进程,将输出保存到日志文件并稍后进行分析。

[root@localhost ~]#
[root@localhost ~]# strace -o log -p 7166
Process 7166 attached - interrupt to quit

Use strace debugging utility. You can attach to already running process, save output to log file and analyse it later.

[root@localhost ~]#
[root@localhost ~]# strace -o log -p 7166
Process 7166 attached - interrupt to quit
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文