|
在监控tomcat时,虚拟内存可以取出来,字符串%s输出正确,但是%f 输出错误,例如:
lr_output_message("jvm s = %s",lr_eval_string("{JVMFreeMemory}"));
lr_output_message("jvm f = %f",atof(lr_eval_string("{JVMFreeMemory}")) );
-----
输出是: Action.c(38): jvm s = 53.85 ; Action.c(40): jvm f = 0.000000;
**************************
使用lr自带的 atof的例子:
-----
vuser_init() {
float x;
char *s = "7.2339 by these hilts or I am a villain else";
x = atof(s);
/* The %.2f formatting string limits the output to 2 decimal places */
lr_output_message("%.2f", x);
return 0;
}
-----
应该输出是 vuser_init.c(11): 7.23
但我的实际输出是 vuser_init.c(8): 1244136.00。
******************************
我的lr版本是9.1,tomcat是6。
哪位高手帮忙看看,先谢谢了~ |
|