서버상태, httpclient 수정
This commit is contained in:
@@ -118,6 +118,8 @@ public class MapSheetLearnRepositoryImpl implements MapSheetLearnRepositoryCusto
|
||||
queryFactory
|
||||
.select(systemMetricEntity.timestamp.max())
|
||||
.from(systemMetricEntity)
|
||||
//.where(systemMetricEntity.timestamp.goe(OffsetDateTime.now().minusMinutes(5)))
|
||||
.where(systemMetricEntity.timestamp.goe(OffsetDateTime.now().minusSeconds(30)))
|
||||
.groupBy(systemMetricEntity.serverName)
|
||||
.fetch();
|
||||
|
||||
@@ -125,6 +127,8 @@ public class MapSheetLearnRepositoryImpl implements MapSheetLearnRepositoryCusto
|
||||
queryFactory
|
||||
.select(gpuMetricEntity.timestamp.max())
|
||||
.from(gpuMetricEntity)
|
||||
//.where(gpuMetricEntity.timestamp.goe(OffsetDateTime.now().minusMinutes(5)))
|
||||
.where(gpuMetricEntity.timestamp.goe(OffsetDateTime.now().minusSeconds(30)))
|
||||
.groupBy(gpuMetricEntity.serverName)
|
||||
.fetch();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user