性能测试指标

来源:互联网 发布:golang mongodb in 编辑:程序博客网 时间:2024/05/16 17:54
 性能测试指标: 
1、SQL数据库: 
 User  0    Connections  (用户连接数,也就是数据库的连接数量); 
 Number  of  deadlocks/Sec/-Total  (数据库死锁) 
 Memory\  Availalle  Mbyte  内存监控  (可用内存) 
 Physicsdisk  \disk  time  \-Total(磁盘读写总时间)(出现瓶颈时检查读磁盘的时间长还是写磁盘的时间长) 
 Butter  Caile  hit(数据库缓存的选取命中率) 
 数据库的命中率不能低于92% 
2、Web  Server: 
 Processor  \  Processon  time  \  Tatol    cpu时间 
 Memory  \  Availalle  MbyteAvai  应用服务器的内存 
 Requst  Quened  进入HTTP队列的时间;队列/每秒 
 Total  request  总请求数时间 
 Avg  Rps  平均每秒钟响应次数=  总请求时间  /  秒数 
 Avg  time  to  last  byte  per  terstion  (mstes)平均每秒迭代次数  ;  上一个页面到下一个页面的时间是你录入角本的一个过程的执行 
 Http  Error  无效请求次数 
 Send  发送请求次数字节数 
3、Webload的压力参数: 
 Load  Size(压力规模大小) 
 Round  Time(请求时间) 
 Rounds  (请求数) 
 Successful  Rounds(成功的请求) 
 Failed    Rounds  (失败的请求) 
 Rounds  Per  Second  (每秒请求次数)(是指你录入角本的任务在一秒中执行的次数,类似Avg  time  to  last  byte  per  terstion  (mstes)) 
 Successful  Rounds  Per  Second(每秒成功的请求次数) 
 Failed    Rounds  Per  Second(每秒失败的请求次数) 
 Page  Time  页面响应时间 
 Pages  (页面数) 
 Pages    Per  Second  (每秒页面响应数) 
 Hit      Time(点击时间) 
 Hits(点击次数,也可以是请求次数,不过有一些不一样) 
 Successful    Hits  (成功的点击次数) 
 Failed    Hits  (失败的点击次数) 
 Hits  Per  Second  (每秒点击数) 
 Successful    Hits  Per  Second  (每秒成功的点击次数) 
 Failed    Hits  Per  Second  (每秒失败的点击次数) 
 Attempted    Connections  (尝试链接数) 
 Successful    Connections(成功的连接数) 
 Failed      Connections(失败的连接数) 
 Connect    Time(连接时间) 
 Process    Time(系统执行时间,一般用来显示CPU的运算量,服务器端与客户端都要记录) 
 Receive    Time(接受时间) 
 Send      Time(请求时间) 
 Time      To      First    Byte  () 
 Throughput      (Bytes    Per    Second)() 
 Response    Time(回应时间) 
 Response    Data      Size() 
 Responses() 


 

原创粉丝点击