51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 4451|回复: 12
打印 上一主题 下一主题

[原创] loadrunner不知道如何监控内存

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2010-11-23 14:14:08 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
安装rstatd守护进程后,已经监控到CPU和Averager load,但是Swap-in rate和Swap-out rate显示为0,不知道如何监控Linux内存??
内存
Page-in rate
每秒钟读入到物理内存中的页数
Page-out rate
每秒钟写入页面文件和从物理内存中删除的页数
Paging rate
每秒钟读入物理内存或写入页面文件的页数,如果持续在几百,可能要加大内存了
这个要怎么分析?
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
发表于 2010-11-23 14:32:25 | 只看该作者
显示为零是说已经有这两个曲线,只是值一直为0吗?
如果是的话,就要跑点程序压一下服务器,这样才能看到曲线起伏,
如果不跑程序,只是连接到服务器,是会出现这种情况
不知道能帮到你不
回复 支持 反对

使用道具 举报

  • TA的每日心情
    开心
    2016-8-25 11:11
  • 签到天数: 1 天

    连续签到: 1 天

    [LV.1]测试小兵

    3#
    发表于 2010-11-23 14:46:52 | 只看该作者
    试试这个
    如果Process\Private Bytes计数器和Process\Working Set计数器的值持续升高
    同时Memory\Available bytes计数器的值却持续降低的话
    说明很有可能是存在内存泄漏
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    4#
     楼主| 发表于 2010-11-23 14:54:47 | 只看该作者
    回复 2# burenshi


    谢谢你~
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    5#
     楼主| 发表于 2010-11-23 14:55:13 | 只看该作者
    回复 3# liujinkui


            谢谢你~可是跑程序了,还是0,难道是linux有问题吗?
    还有个问题就是:
    内存
    Page-in rate
    每秒钟读入到物理内存中的页数
    Page-out rate
    每秒钟写入页面文件和从物理内存中删除的页数
    Paging rate
    每秒钟读入物理内存或写入页面文件的页数,如果持续在几百,可能要加大内存了

    这三条如果有数值的话怎么判断内存的占用率呢?
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    6#
    发表于 2010-11-23 20:21:51 | 只看该作者
    使用Nmon监控吧
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    7#
    发表于 2010-11-24 09:23:38 | 只看该作者
    请问这个Nmon是独立于LoadRunner的一个工具吗?还是和LoadRunner有关系的啊?
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    8#
    发表于 2010-11-24 15:48:08 | 只看该作者
    独立的一个监控aix 和linux操作系统的一个小工具,很好用!!
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    9#
    发表于 2010-11-24 15:58:46 | 只看该作者
    回复 8# myallways


        是什么 能否写具体点  能否发给我
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    10#
    发表于 2010-11-24 16:05:01 | 只看该作者
    回复 3# liujinkui


        恩 谢谢
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    11#
    发表于 2010-11-24 18:45:01 | 只看该作者
    Available Bytes Counter
    Indicates the amount of physical memory available to processes running on the computer
    A consistent value of less than 20–25% of installed RAM is an indication of insufficient memory.

    Working Set Counter
    If memory is scarce, Process(n)\Working Set tells you how much RAM each process is using.

    Pages/sec Counter
    Primary indicator to determine whether real memory is a potential bottleneck.

    Page Reads/sec counters are hard page faults. A running thread has referenced a page in virtual memory that is not in the process working set. Nor is it a trimmed page marked in transition, but rather is still resident in memory. The thread is delayed for the duration of the I/O operation to fetch the page from disk. The operating system copies the page from disk to an available page in RAM and then redispatches the thread.

    Watch out when Pages/sec exceeds 50 per paging disk.
    Page Reads/sec Counter
    Primary indicator to determine whether real memory is a potential bottleneck.

    This counter indicates that the working set of the process is too large for the physical memory and that it is paging to disk. It shows the number of read operations, without regard to the number of pages retrieved in each operation. Higher values indicate a memory bottleneck.

    If a low rate of page-read operations coincides with high values for Physical Disk\% Disk Time and Physical Disk\Avg. Disk Queue Length, there could be a disk bottleneck. If an increase in queue length is not accompanied by a decrease in the pages-read rate, a memory shortage exists.

    Sustained values of more than five indicate a large number of page faults for read requests.

    Pool Nonpaged Bytes Counter
    Pages allocated from the Nonpaged pool are always resident in RAM.

    Status information about every TCP connection is stored in the Nonpaged pool. Divide by the size of a page to calculate the number of allocated pages.

    Watch the value of Memory\Pool Nonpaged Bytes for an increase of 10 percent or more from its value at system startup. If it indeed happens, a significant memory leak is in place.

    Paged Pool Bytes Counter
    Primarily used to identify processes that are leaking memory.

    The number of committed virtual memory pages in the system’s Paged pool. System functions allocate virtual memory pages that are eligible to be paged out from the Paged pool. System functions that are called by processes also allocate virtual memory pages from the Paged pool.

    Memory\Paged Pool Bytes reports how much virtual memory is allocated in the system Paged pool.Memory\Paged Pool Resident Bytes is the current number of Paged pool pages that are resident in RAM.The remainder is paged out.

    Process(n)\Paged Pool Bytes increase of more than 10% for a specific process may point to leaking memory behavior.

    Paged Pool Failures Counter
    Server\Paged Pool Failures Counter:
    Primarily used to identify a virtual memory shortage in the Paged pool.

    The file Server service has a number of functions that allocate virtual memory pages from the Paged pool. If a memory leak exhausts the Paged pool, the file Server service might encounter difficulty in allocating virtual memory from the Paged pool. If a call to allocate virtual memory fails, the file Server service recovers gracefully from these failures and reports on them. Because many other applications and system functions do not recover gracefully from virtual memory allocation failures, this counter can be the only reliable indicator that a memory leak caused these allocation failures.

    Any nonzero value of this counter indicates a bottleneck.

    Committed Bytes Counter
    The Committed Bytes:RAM ratio is a secondary indicator of a real memory shortage.

    When Committed Bytes:RAM ratio exceeds 1.5, it clearly indicates real memory bottleneck.
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    12#
    发表于 2010-11-24 23:46:47 | 只看该作者
    试试这个
    如果Process\Private Bytes计数器和Process\Working Set计数器的值持续升高
    同时Memory\Availab ...
    liujinkui 发表于 2010-11-23 14:46



      版主可以来个详细讲解吗?学习下怎样判断内存泄漏
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    13#
    发表于 2010-11-25 11:21:14 | 只看该作者
    回复 12# chase001


        试试 内存泄露 是怎么看
    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-9-20 12:04 , Processed in 0.086313 second(s), 27 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表