LR基础学习_脚本信息函数 Action() { //脚本信息函数。 //lr_whoami:返回Vuser的ID,组名称,场景ID信息。 /* int id,scid; char *vuser_group; lr_whoami(&id,&vuser_group,&scid); lr_error_message("Group:%s,vuser id:%d,scenario id %d",vuser_group,id,scid); */ //lr_get_host_name:返回运行脚本的Generator的主机名称。 /* char *my_host; my_host = lr_get_host_name(); lr_output_message("my_host:%s",my_host); */ //lr_get_master_host_name:返回运行脚本的Controller的主机名称。 /* char *controller_host; controller_host = lr_get_master_host_name(); lr_output_message("controller_host:%s",controller_host); */ //lr_get_vuser_id:使用Ip spoofing之后,可以用lr_get_vuser_ip来返回当前的Vuser的Ip。如果未使用Ip spoofing功能,则返回null。 //lr_start_timer与lr_end_timer:必须组合使用,前者用来启动一个计时器,同时返回计时器的句柄,后来用来使指定的计时器停止计时,并返回计时结果。 //语法如下: //merc_timer_handle_t lr_start_timer(); //double lr_end_timer(merc_timer_handle_t timer); return 0; }
时间: 2024-10-13 05:20:38