-
Notifications
You must be signed in to change notification settings - Fork 1.3k
[manager] bugfix: fix incorrect status page date calculation #3962
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
2fffea0
e850fc3
a2121af
7730fd5
e0785cd
0657a6e
b823871
023b735
c9dfb8a
967fbdd
1cf91d8
f3fd174
0cdae89
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,9 +18,8 @@ | |
| package org.apache.hertzbeat.manager.service.impl; | ||
|
|
||
| import java.time.Instant; | ||
| import java.time.LocalDateTime; | ||
| import java.time.ZoneId; | ||
| import java.time.ZoneOffset; | ||
| import java.time.ZonedDateTime; | ||
| import java.util.ArrayList; | ||
| import java.util.LinkedList; | ||
| import java.util.List; | ||
|
|
@@ -131,45 +130,71 @@ public List<ComponentStatus> queryComponentsStatus() { | |
| componentStatus.setInfo(component); | ||
| List<StatusPageHistory> histories = new LinkedList<>(); | ||
| // query today status | ||
| LocalDateTime nowTime = LocalDateTime.now(); | ||
| LocalDateTime todayStartTime = nowTime.withHour(0).withMinute(0).withSecond(0).withNano(0); | ||
| ZoneOffset zoneOffset = ZoneId.systemDefault().getRules().getOffset(Instant.now()); | ||
| long nowTimestamp = nowTime.toInstant(zoneOffset).toEpochMilli(); | ||
| long todayStartTimestamp = todayStartTime.toInstant(zoneOffset).toEpochMilli(); | ||
| ZoneId zoneId = ZoneId.systemDefault(); | ||
|
|
||
| Instant now = Instant.now(); | ||
| long nowTimestamp = now.toEpochMilli(); | ||
|
|
||
| long todayStartTimestamp = now | ||
| .atZone(zoneId) | ||
| .toLocalDate() | ||
| .atStartOfDay(zoneId) | ||
| .toInstant() | ||
| .toEpochMilli(); | ||
|
|
||
| List<StatusPageHistory> todayStatusPageHistoryList = statusPageHistoryDao | ||
| .findStatusPageHistoriesByComponentIdAndTimestampBetween(component.getId(), todayStartTimestamp, nowTimestamp); | ||
| StatusPageHistory todayStatus = combineOneDayStatusPageHistory(todayStatusPageHistoryList, component, nowTimestamp); | ||
| histories.add(todayStatus); | ||
| // query 30d component status history | ||
| LocalDateTime preTime = todayStartTime.minusDays(HISTORY_SPAN_DAYS); | ||
| long preTimestamp = preTime.toInstant(zoneOffset).toEpochMilli(); | ||
| long preTimestamp = now | ||
| .atZone(zoneId) | ||
| .toLocalDate() | ||
| .minusDays(HISTORY_SPAN_DAYS) | ||
| .atStartOfDay(zoneId) | ||
| .toInstant() | ||
| .toEpochMilli(); | ||
|
|
||
|
|
||
| List<StatusPageHistory> history = statusPageHistoryDao | ||
| .findStatusPageHistoriesByComponentIdAndTimestampBetween(component.getId(), preTimestamp, todayStartTimestamp); | ||
| LinkedList<StatusPageHistory> historyList = new LinkedList<>(history); | ||
| historyList.sort((o1, o2) -> (int) (o1.getTimestamp() - o2.getTimestamp())); | ||
| LocalDateTime endTime = todayStartTime.minusSeconds(1); | ||
| LocalDateTime startTime = endTime.withHour(0).withMinute(0).withSecond(0).withNano(0); | ||
| for (int index = 0; index < HISTORY_SPAN_DAYS; index++) { | ||
| long startTimestamp = startTime.toInstant(zoneOffset).toEpochMilli(); | ||
| long endTimestamp = endTime.toInstant(zoneOffset).toEpochMilli(); | ||
| List<StatusPageHistory> thisDayHistory = historyList.stream().filter(item -> | ||
| item.getTimestamp() >= startTimestamp && item.getTimestamp() <= endTimestamp) | ||
| .collect(Collectors.toList()); | ||
| historyList.sort((o1, o2) -> Long.compare(o1.getTimestamp(), o2.getTimestamp())); | ||
| ZonedDateTime end = Instant.ofEpochMilli(todayStartTimestamp) | ||
| .atZone(zoneId) | ||
| .minusSeconds(1); // yesterday 23:59:59 local time | ||
|
|
||
| for (int i = 0; i < HISTORY_SPAN_DAYS; i++) { | ||
| long endTimestamp = end.toInstant().toEpochMilli(); | ||
|
|
||
| long startTimestamp = end.toLocalDate() | ||
| .atStartOfDay(zoneId) | ||
| .toInstant() | ||
| .toEpochMilli(); | ||
|
|
||
| List<StatusPageHistory> thisDayHistory = historyList.stream() | ||
| .filter(h -> h.getTimestamp() >= startTimestamp && h.getTimestamp() <= endTimestamp) | ||
| .collect(Collectors.toList()); | ||
|
|
||
| if (thisDayHistory.isEmpty()) { | ||
| StatusPageHistory statusPageHistory = StatusPageHistory.builder().timestamp(endTimestamp) | ||
| .componentId(component.getId()).state(CommonConstants.STATUS_PAGE_COMPONENT_STATE_UNKNOWN).build(); | ||
| histories.add(statusPageHistory); | ||
| histories.add(StatusPageHistory.builder() | ||
| .timestamp(endTimestamp) | ||
| .componentId(component.getId()) | ||
| .state(CommonConstants.STATUS_PAGE_COMPONENT_STATE_UNKNOWN) | ||
| .build()); | ||
| } else if (thisDayHistory.size() == 1) { | ||
| histories.add(thisDayHistory.get(0)); | ||
| } else { | ||
| StatusPageHistory statusPageHistory = combineOneDayStatusPageHistory(thisDayHistory, component, endTimestamp); | ||
| histories.add(statusPageHistory); | ||
| StatusPageHistory merged = | ||
| combineOneDayStatusPageHistory(thisDayHistory, component, endTimestamp); | ||
| histories.add(merged); | ||
| statusPageHistoryDao.deleteAll(thisDayHistory); | ||
| statusPageHistoryDao.save(statusPageHistory); | ||
| statusPageHistoryDao.save(merged); | ||
| } | ||
| startTime = startTime.minusDays(1); | ||
| endTime = endTime.minusDays(1); | ||
|
|
||
| end = end.minusDays(1); | ||
| } | ||
|
Comment on lines
+133
to
195
|
||
|
|
||
| componentStatus.setHistory(histories); | ||
| componentStatusList.add(componentStatus); | ||
| } | ||
|
|
@@ -215,50 +240,88 @@ private StatusPageHistory combineOneDayStatusPageHistory(List<StatusPageHistory> | |
|
|
||
| @Override | ||
| public ComponentStatus queryComponentStatus(long id) { | ||
| StatusPageComponent component = statusPageComponentDao.findById(id).orElseThrow(() -> new IllegalArgumentException("component not found")); | ||
| StatusPageComponent component = statusPageComponentDao.findById(id) | ||
| .orElseThrow(() -> new IllegalArgumentException("component not found")); | ||
|
|
||
| ComponentStatus componentStatus = new ComponentStatus(); | ||
| componentStatus.setInfo(component); | ||
| List<StatusPageHistory> histories = new LinkedList<>(); | ||
| // query today status | ||
| LocalDateTime nowTime = LocalDateTime.now(); | ||
| LocalDateTime todayStartTime = nowTime.withHour(0).withMinute(0).withSecond(0).withNano(0); | ||
| ZoneOffset zoneOffset = ZoneId.systemDefault().getRules().getOffset(Instant.now()); | ||
| long nowTimestamp = nowTime.toInstant(zoneOffset).toEpochMilli(); | ||
| long todayStartTimestamp = todayStartTime.toInstant(zoneOffset).toEpochMilli(); | ||
| List<StatusPageHistory> todayStatusPageHistoryList = statusPageHistoryDao | ||
| .findStatusPageHistoriesByComponentIdAndTimestampBetween(component.getId(), todayStartTimestamp, nowTimestamp); | ||
| StatusPageHistory todayStatus = combineOneDayStatusPageHistory(todayStatusPageHistoryList, component, nowTimestamp); | ||
|
|
||
| ZoneId zoneId = ZoneId.systemDefault(); | ||
|
|
||
| Instant now = Instant.now(); | ||
| long nowTimestamp = now.toEpochMilli(); | ||
|
|
||
| long todayStartTimestamp = now | ||
| .atZone(zoneId) | ||
| .toLocalDate() | ||
| .atStartOfDay(zoneId) | ||
| .toInstant() | ||
| .toEpochMilli(); | ||
|
|
||
| // Today | ||
| List<StatusPageHistory> todayStatusPageHistoryList = | ||
| statusPageHistoryDao.findStatusPageHistoriesByComponentIdAndTimestampBetween( | ||
| component.getId(), todayStartTimestamp, nowTimestamp); | ||
|
|
||
| StatusPageHistory todayStatus = | ||
| combineOneDayStatusPageHistory(todayStatusPageHistoryList, component, nowTimestamp); | ||
|
|
||
| histories.add(todayStatus); | ||
| // query 30d component status history | ||
| LocalDateTime preTime = todayStartTime.minusDays(HISTORY_SPAN_DAYS); | ||
| long preTimestamp = preTime.toInstant(zoneOffset).toEpochMilli(); | ||
| List<StatusPageHistory> history = statusPageHistoryDao | ||
| .findStatusPageHistoriesByComponentIdAndTimestampBetween(component.getId(), preTimestamp, todayStartTimestamp); | ||
|
|
||
| // Previous 29 days | ||
|
tomsun28 marked this conversation as resolved.
Outdated
|
||
| long preTimestamp = now | ||
| .atZone(zoneId) | ||
| .toLocalDate() | ||
| .minusDays(HISTORY_SPAN_DAYS) | ||
| .atStartOfDay(zoneId) | ||
| .toInstant() | ||
| .toEpochMilli(); | ||
|
|
||
|
|
||
|
tomsun28 marked this conversation as resolved.
Outdated
|
||
| List<StatusPageHistory> history = | ||
| statusPageHistoryDao.findStatusPageHistoriesByComponentIdAndTimestampBetween( | ||
| component.getId(), preTimestamp, todayStartTimestamp); | ||
|
|
||
| LinkedList<StatusPageHistory> historyList = new LinkedList<>(history); | ||
| historyList.sort((o1, o2) -> (int) (o1.getTimestamp() - o2.getTimestamp())); | ||
| LocalDateTime endTime = todayStartTime.minusSeconds(1); | ||
| LocalDateTime startTime = endTime.withHour(0).withMinute(0).withSecond(0).withNano(0); | ||
| for (int index = 0; index < HISTORY_SPAN_DAYS; index++) { | ||
| long startTimestamp = startTime.toInstant(zoneOffset).toEpochMilli(); | ||
| long endTimestamp = endTime.toInstant(zoneOffset).toEpochMilli(); | ||
| List<StatusPageHistory> thisDayHistory = historyList.stream().filter(item -> | ||
| item.getTimestamp() >= startTimestamp && item.getTimestamp() <= endTimestamp) | ||
| .collect(Collectors.toList()); | ||
| historyList.sort((o1, o2) -> Long.compare(o1.getTimestamp(), o2.getTimestamp())); | ||
|
|
||
| ZonedDateTime end = Instant.ofEpochMilli(todayStartTimestamp) | ||
| .atZone(zoneId) | ||
| .minusSeconds(1); // yesterday 23:59:59 local time | ||
|
|
||
| for (int i = 0; i < HISTORY_SPAN_DAYS; i++) { | ||
| long endTimestamp = end.toInstant().toEpochMilli(); | ||
|
|
||
| long startTimestamp = end.toLocalDate() | ||
| .atStartOfDay(zoneId) | ||
| .toInstant() | ||
| .toEpochMilli(); | ||
|
|
||
| List<StatusPageHistory> thisDayHistory = historyList.stream() | ||
| .filter(h -> h.getTimestamp() >= startTimestamp && h.getTimestamp() <= endTimestamp) | ||
| .collect(Collectors.toList()); | ||
|
|
||
| if (thisDayHistory.isEmpty()) { | ||
| StatusPageHistory statusPageHistory = StatusPageHistory.builder().timestamp(endTimestamp) | ||
| .componentId(component.getId()).state(CommonConstants.STATUS_PAGE_COMPONENT_STATE_UNKNOWN).build(); | ||
| histories.add(statusPageHistory); | ||
| histories.add(StatusPageHistory.builder() | ||
| .timestamp(endTimestamp) | ||
| .componentId(component.getId()) | ||
| .state(CommonConstants.STATUS_PAGE_COMPONENT_STATE_UNKNOWN) | ||
| .build()); | ||
| } else if (thisDayHistory.size() == 1) { | ||
| histories.add(thisDayHistory.get(0)); | ||
| } else { | ||
| StatusPageHistory statusPageHistory = combineOneDayStatusPageHistory(thisDayHistory, component, endTimestamp); | ||
| histories.add(statusPageHistory); | ||
| StatusPageHistory merged = | ||
| combineOneDayStatusPageHistory(thisDayHistory, component, endTimestamp); | ||
| histories.add(merged); | ||
| statusPageHistoryDao.deleteAll(thisDayHistory); | ||
| statusPageHistoryDao.save(statusPageHistory); | ||
| statusPageHistoryDao.save(merged); | ||
| } | ||
| startTime = startTime.minusDays(1); | ||
| endTime = endTime.minusDays(1); | ||
|
|
||
| end = end.minusDays(1); | ||
| } | ||
|
Comment on lines
+249
to
320
|
||
|
|
||
|
|
||
|
tomsun28 marked this conversation as resolved.
Outdated
|
||
| componentStatus.setHistory(histories); | ||
| return componentStatus; | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.