Skip to content

Commit

Permalink
fix :: 한시간전 로그
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed May 7, 2024
1 parent 0e9dc10 commit 3987f9e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class GetContainerService(
?: throw BusinessLogicException.CONTAINER_NOT_FOUND

val currentTimeMillis = Instant.now().toEpochMilli()
val twentyFourHoursAgoMillis = currentTimeMillis - (24 * 60 * 60 * 1000)
val twentyFourHoursAgoMillis = currentTimeMillis - (60 * 60 * 1000)

val request = GetLogRequest(
queries = listOf(
Expand All @@ -45,7 +45,7 @@ class GetContainerService(
queryType = "range",
intervalMs = 2000,
maxDataPoints = 630,
maxLines = 1000,
maxLines = 10000,
legendFormat = "",
datasourceId = 3
)
Expand Down

0 comments on commit 3987f9e

Please sign in to comment.