浏览 3216 次
锁定老帖子 主题:如何查看节点的可用句柄数目和已用句柄数
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2010-04-08
下面的这个程序就演示了这个如何查看节点的可用句柄数目和已用句柄数的功能. 首先确保你已经安装了lsof, 我的系统是ubuntu可以这样安装. root@ubuntu:~# apt-get -y install lsof root@ubuntu:~# cat fd.erl -module(fd). -export([start/0]). get_total_fd_ulimit() -> {MaxFds, _} = string:to_integer(os:cmd("ulimit -n")), MaxFds. get_total_fd() -> get_total_fd(os:type()). get_total_fd({unix, Os}) when Os =:= linux orelse Os =:= darwin orelse Os =:= freebsd orelse Os =:= sunos -> get_total_fd_ulimit(); get_total_fd(_) -> unknown. get_used_fd_lsof() -> Lsof = os:cmd("lsof -d \"0-9999999\" -lna -p " ++ os:getpid()), string:words(Lsof, $\n). get_used_fd() -> get_used_fd(os:type()). get_used_fd({unix, Os}) when Os =:= linux orelse Os =:= darwin orelse Os =:= freebsd -> get_used_fd_lsof(); get_used_fd(_) -> unknown. start()-> io:format("total fd: ~p~n" "used fd: ~p~n", [get_total_fd(), get_used_fd()]), halt(0). root@ubuntu:~# erlc fd.erl root@ubuntu:~# ulimit -n 1024 root@ubuntu:~# erl -noshell -s fd total fd: 1024 used fd: 10 root@ubuntu:~# ulimit -n 10240 root@ubuntu:~# erl -noshell -s fd total fd: 10240 used fd: 10 root@ubuntu:~# 收工! 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2010-04-08
貌似有碰到过(win平台),谢谢了
|
|
返回顶楼 | |