소스 검색

IOT调用测试

master
林万龙 3 년 전
부모
커밋
a4a72f25db
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/main/java/com/telpo/iotgateway/server/IotCommunication.java

+ 2
- 2
src/main/java/com/telpo/iotgateway/server/IotCommunication.java 파일 보기

@@ -119,12 +119,12 @@ public class IotCommunication {
if (reqCount == 10000) {
long appPassTime = (new DateTime()).getTime();
log.info("10000请求用时秒数:" + (appPassTime-appStartTime)/1000);
log.info("用时超过1000毫秒次数:" + reqLongCount);
log.info("平均每次请求用时(毫秒):" + allOfManTime/10000);
reqCount = 0;
allOfManTime = 0;
appStartTime = appPassTime;
reqLongCount=0;
//reqLongCount=0;
log.info("用时超过1000毫秒总次数:" + reqLongCount);
}
}
} catch (ServerException e) {


Loading…
취소
저장