如何获取进程的踪迹?
假设有一个进程很多天都处于非活动状态,我想知道该进程处于活动状态的时间。除了日志记录之外,我还可以从哪里获取这些信息? 这是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 strace 调试实用程序。您可以附加到已经运行的进程,将输出保存到日志文件并稍后进行分析。
Use strace debugging utility. You can attach to already running process, save output to log file and analyse it later.