jmeter beanshell 获取当前运行环境的ip
InetAddress ia = InetAddress.getLocalHost(); String ip = ia.getHostAddress(); String name = ia.getHostName(); log.info(ip); log.info(name);

InetAddress ia = InetAddress.getLocalHost(); String ip = ia.getHostAddress(); String name = ia.getHostName(); log.info(ip); log.info(name);
