testhuang 发表于 2006-11-11 16:57:28

怎样用LR监视tomcat的性能?

请教:怎样用LR监视tomcat的性能?

pcl2004_27 发表于 2006-11-16 10:19:06

监控分为两方面:
1.监控指标
   监控Tomcat主要指标为两个参数:
   - number of sessions per application
- number of threads in different statuses

   可以通过下面的链接察看
    http://{ServerNameOrIPaddress}:8080/manager/htmlsession,
   
下边的地址可以通过 web_reg_save_param()参数扑获
web_reg_save_param("YuPara_ApplicationAtest_Sessions",
"LB=path=/ApplicationAtest\">",
"RB=</a>",
LAST);
如果获得 Thread 代码,输入如下地址

http://{ServerNameOrIPaddress}:8080/manager/status

通过如下代码扑火
web_reg_save_param("YuPara_Threads",
"LB=<tr><td><strong>",
"RB=</strong>",
"Ord=All", // All occurrences of this parameter are captured
LAST);

最后利用
lr_user_data_point 函数把获得的数据输入到性能测试图谱中



2.监控代码
可以利用LoadRunner Diagnostics 监控
页: [1]
查看完整版本: 怎样用LR监视tomcat的性能?