Monitoring the process execution and memory consumption in its lifetime

<?xml version="1.0" encoding="utf-8"?> Monitoring the process execution and memory consumption in its lifetime

Monitoring the process execution and memory consumption in its lifetime

Recently, I am working on a research project which involves the monitoring of some processes, I want to get the output of the top command for further analysis, the shell script to do this is as follows:

 1: #!/bin/bash
 2: 
 3: mem_load_file=/tmp/mem_load
 4: for exe in `find ./bin -type f`
 5: do
 6: 	echo $exe >> $mem_load_file
 7: 	./$exe &
 8: 	bgpid=$!
 9: 	echo $bgpid >> $mem_load_file
10: 	top | grep $bgpid >> $mem_load_file &
11: 	wait $bgpid
12: 	killall top
13: done

The mechanism behind this script is to start the process as a background process (line 7) and get its pid (line 8), the pid is used for top and grep, and it is important to make the top command background so that the monitoring can go all the way till the target process exit. The wait call at line 11 makes sure that the process terminate. Then the top can be killed.

The output looks like:

 1: ./bin/sp.W
 2: 861
 3:   861 wujing    20   0   23656   9528    840 R 98.16 0.118   0:00.15 sp.W       
 4:     1 root      20   0   48616   1696    476 S 0.000 0.021   0:00.62 systemd    
 5:   861 wujing    20   0   23656   9528    840 R 99.43 0.118   0:03.14 sp.W       
 6:     1 root      20   0   48616   1696    476 S 0.000 0.021   0:00.62 systemd    
 7: ./bin/cg.W
 8: 865
 9:   865 wujing    20   0   22716   8540    808 R 84.60 0.106   0:00.13 cg.W       
10: ./bin/is.B
11: 869
12:   869 wujing    20   0  274640   8512    256 R 98.21 0.105   0:00.15 is.B       
13:   869 wujing    20   0  274640 120956    412 R 99.48 1.497   0:03.14 is.B       
14: ./bin/lu.C
15: 873
16:   873 wujing    20   0  608760 139080    776 R 91.72 1.722   0:00.14 lu.C       
17:   873 wujing    20   0  608760 592104    788 R 99.15 7.329   0:03.12 lu.C       
18:   873 wujing    20   0  608760 593160    812 R 99.47 7.342   0:06.11 lu.C       
19:   873 wujing    20   0  608760 593160    812 R 99.45 7.342   0:09.10 lu.C       
20:   873 wujing    20   0  608760 593160    812 R 99.13 7.342   0:12.08 lu.C       
21:   873 wujing    20   0  608760 593160    812 R 99.46 7.342   0:15.07 lu.C       
22:   873 wujing    20   0  608760 593160    812 R 99.42 7.342   0:18.06 lu.C       
23:   873 wujing    20   0  608760 593160    812 R 99.10 7.342   0:21.04 lu.C       
24:   873 wujing    20   0  608760 593160    812 R 99.45 7.342   0:24.03 lu.C       
25:   873 wujing    20   0  608760 593160    812 R 99.15 7.342   0:27.01 lu.C       
26:   873 wujing    20   0  608760 593160    812 R 99.46 7.342   0:30.00 lu.C       
27:   873 wujing    20   0  608760 593160    812 R 99.15 7.342   0:32.98 lu.C       
28:   873 wujing    20   0  608760 593160    812 R 99.48 7.342   0:35.97 lu.C       
29:   873 wujing    20   0  608760 593160    812 R 99.15 7.342   0:38.95 lu.C       
30:   873 wujing    20   0  608760 593160    812 R 99.45 7.342   0:41.94 lu.C       
31:   873 wujing    20   0  608760 593160    812 R 99.13 7.342   0:44.92 lu.C       
32:   873 wujing    20   0  608760 593160    812 R 99.46 7.342   0:47.91 lu.C       
33:   873 wujing    20   0  608760 593160    812 R 99.13 7.342   0:50.89 lu.C       
34:   873 wujing    20   0  608760 593160    812 R 99.46 7.342   0:53.88 lu.C       
35:   873 wujing    20   0  608760 593160    812 R 99.12 7.342   0:56.86 lu.C       
36:   873 wujing    20   0  608760 593160    812 R 99.13 7.342   0:59.84 lu.C       
37:   873 wujing    20   0  608760 593160    812 R 99.48 7.342   1:02.83 lu.C       
38:   873 wujing    20   0  608760 593160    812 R 99.13 7.342   1:05.81 lu.C       
39:   873 wujing    20   0  608760 593160    812 R 99.47 7.342   1:08.80 lu.C       
40:   873 wujing    20   0  608760 593160    812 R 99.13 7.342   1:11.78 lu.C       
41:   873 wujing    20   0  608760 593160    812 R 99.14 7.342   1:14.76 lu.C       
42:   873 wujing    20   0  608760 593160    812 R 99.48 7.342   1:17.75 lu.C       
43:   873 wujing    20   0  608760 593160    812 R 99.14 7.342   1:20.73 lu.C       
44:   873 wujing    20   0  608760 593160    812 R 99.45 7.342   1:23.72 lu.C       
45:   873 wujing    20   0  608760 593160    812 R 99.15 7.342   1:26.70 lu.C       
46:   873 wujing    20   0  608760 593160    812 R 99.15 7.342   1:29.68 lu.C       
47:   873 wujing    20   0  608760 593160    812 R 99.48 7.342   1:32.67 lu.C       
48:   873 wujing    20   0  608760 593160    812 R 99.15 7.342   1:35.65 lu.C       
49:   873 wujing    20   0  608760 593160    812 R 99.47 7.342   1:38.64 lu.C       
50:   873 wujing    20   0  608760 593160    812 R 99.14 7.342   1:41.62 lu.C

Author: wujing

Created: 2014-09-16 二 10:08

Emacs 24.3.1 (Org mode 8.2.6)

Validate

转载于:https://www.cnblogs.com/wujingcqu/p/3974304.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/375622.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

设置和清除LD_LIBRARY_PATH

"" 设置 export LD_LIBRARY_PATH$LD_LIBRARY_PATH:/the/path/you/want/setexport LD_LIBRARY_PATH/the/path/you/want/set "" 查看设置 echo $LD_LIBRARY_PATH "" 清除 unset LD_LIBRARY_PATH

Jenkins中切换devtoolset

source /opt/rh/devtoolset-4/enable or source scl_source enable devtoolset-4

告诉一个远程团队协作的故事

Lisette Sutherland和Elinor Slomba在一起收集一些人的故事&#xff0c;这些人的业务模式须要依靠远程团队正确完毕工作。故事中体现出远程团队怎样协作。怎样跨越距离的障碍&#xff0c;怎样建立信任&#xff0c;怎样完毕任务。即将出版的《高能协作&#xff1a;远程战地指南》…

混沌数学之吕陈吸引子

吕陈吸引子&#xff08;Lu Chen attractor&#xff09;也称Lu attractor 吸引子是2002年中国科学院数学与系统科学研究院研究员 吕金虎&#xff08;Jinhu Lu)&#xff0c;Suchun Zhang 和香港城市大学电子工程系讲座教授陈关荣&#xff08; Guangrong Chen &#xff09;发现和分…

整数反转

给出一个 32 位的有符号整数&#xff0c;你需要将这个整数中每位上的数字进行反转。 示例 1: 输入: 123 输出: 321示例 2: 输入: -123 输出: -321示例 3: 输入: 120 输出: 21注意: 假设我们的环境只能存储得下 32 位的有符号整数&#xff0c;则其数值范围为 [−231, 231 −…

C# char[]与string之间的相互转换

string 兑换 Char[] string ss "abcdefg";char[] cc ss.ToCharArray();Char[] 转换成string string s new string(cc);byte[] 与 string 之间的转换 byte[] bb Encoding.UTF8.GetBytes(ss);string s Encoding.UTF8.GetString(bb);string[] 转换成string string …

java 直接 访问WebSphere JNDI

代码如下: Hashtable<String, String> env new Hashtable<String, String>();env.put(Context.INITIAL_CONTEXT_FACTORY, "com.ibm.websphere.naming.WsnInitialContextFactory");env.put(Context.PROVIDER_URL, "iiop://localhost:2809");Co…

Standard C++ Episode 7

六、C的I/O流库 C&#xff1a;fopen/fclose/fread/fwrite/fprintf/fscanf/fseek/ftell... C&#xff1a;对基本的I/O操作做了类的封装&#xff0c;其功能没有任何差别&#xff0c;用法和C的I/O流也非常近似。 七、格式化I/O <</>> 1 /*2 *格式化I/O练习3 */4 #in…

在Android设备与Mac电脑之间传输文件

不同于Windows和Linux&#xff0c;Android设备连接到Mac电脑上是看不见挂载的目录的&#xff0c;既然看不到了Android设备的挂载目录&#xff0c;如何在Android设备与Mac电脑之间传输文件呢&#xff1f; 原来Android官方提供了传输文件的工具&#xff01;访问www.android.com/f…

mysql语句在node.js中的写法

总结一下mysql语句在node.js中的各种写法&#xff0c;参考了npm网站mysql模块给的实例。 查询 select //1 db.query(select * from tuanshang_users where user_id < 10,function(err,results,fields){//if(err) throw err;console.log( results );if(!!results.length){con…

jqPlot图表插件学习之折线图-散点图-series属性

一、准备工作 首先我们需要到官网下载所需的文件&#xff1a; 官网下载&#xff08;笔者选择的是jquery.jqplot.1.0.8r1250.zip这个版本&#xff09; 然后读者需要根据自己的情况新建一个项目并且按照如下的方式加载对应的js和css&#xff08;因为笔者在VS2012环境下新建的&…

node.js基础:数据存储

无服务器的数据存储 内存存储 var http require(http); var count 0; //服务器访问次数存储在内存中 http.createServer(function(req,res){res.write(hello count);res.end(); }).listen(3000);    基于文件的存储 node.js中主要用fs文件系统模块来管理文件的存储。 文件…

CUDA 6.5 VS2013 Win7:创建CUDA项目

运行环境&#xff1a; Win7VS2013CUDA6.5 1.创建win32空项目 2.右键项目解决方案-->生成项目依赖项-->生成自定义 3.右键项目解决方案-->属性-->配置属性-->常规-->平台工具集 配置属性-->VC目录-->包含目录&#xff0c;添加 $(CUDA_INC_PATH) 连接器-…

c/c++编码规范(2)--作用域

2. 作用域 静止使用class类型的静态或全局变量。 6. 命名约定 6.1. 函数名&#xff0c;变量名&#xff0c;文件名要有描述性&#xff0c;少用缩写。 6.2. 文件命名 6.2.1. 文件名要全部用小写。可使用“_”或"-"&#xff0c;遵从项目规范&#xff0c;没有规范&#x…

subversion svnserver服务启动与配置

svnserve 是一个轻量级的服务&#xff0c; 使用自定义的协议通过TCP/IP与客户端通讯。 客户端通过由 svn:// 或者 svnssh:// 开始的URL访问svnserve服务器。 启动服务器 端口监控&#xff08;inetd&#xff09;模式 如果你打算用端口监控来启动处理客户的访问请求的进程&#x…

mongodb地理空间索引原理阅读摘要

http://www.cnblogs.com/taoweiji/p/3710495.html 具体原理在上面 简单概述&#xff0c;&#xff08;x,y&#xff09;经纬度坐标&#xff0c;通过geohash的方式&#xff0c;通过N次方块四分割生成一个坐标码&#xff0c;然后用坐标码进行BTREE的索引建立转载于:https://www.cnb…

angular 页面加载时可以调用 函数处理

转载于 作者:海底苍鹰地址:http://blog.51yip.com/jsjquery/1599.html 我希望页面加载的时候&#xff0c;我能马上处理页面的数据&#xff0c;如请求API .... 所以这样设置 在某个页面的控制器中 监听页面load phonecatControllers.controller(registerctr, [$scope, $routePa…

删除排序数组中的重复项

给定一个排序数组&#xff0c;你需要在原地删除重复出现的元素&#xff0c;使得每个元素只出现一次&#xff0c;返回移除后数组的新长度。 不要使用额外的数组空间&#xff0c;你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成。 示例 1: 给定数组 nums [1,1,2…

android 处理鼠标滚轮事件 【转】

android处理鼠标滚轮事件&#xff0c;并不是如下函数&#xff1a; 1&#xff09; public boolean onKeyDown(int keyCode, KeyEvent event) 2) public boolean dispatchKeyEvent(KeyEvent event) 3) public boolean onTouchEvent(MotionEvent event) 而是如下函数 …

ASP.NET数据报表之柱状图 ------工作日志

#region 柱形色调 /// <summary> /// 柱形色调 /// </summary> private string[] myColor new string[] { "DarkGreen", "DimGray", "DodgerBlue", "Orchid", //Peru "Orange", "Orchid", &q…