summaryrefslogtreecommitdiff
path: root/src/chart
diff options
context:
space:
mode:
Diffstat (limited to 'src/chart')
-rw-r--r--src/chart/index.ts23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/chart/index.ts b/src/chart/index.ts
index 491f26ce70..a7521288ea 100644
--- a/src/chart/index.ts
+++ b/src/chart/index.ts
@@ -230,7 +230,7 @@ export default abstract class Chart<T> {
null;
// ログ取得
- const logs = await this.collection.find({
+ let logs = await this.collection.find({
group: group,
span: span,
date: {
@@ -245,6 +245,27 @@ export default abstract class Chart<T> {
}
});
+ // 要求された範囲にログがひとつもなかったら
+ if (logs.length == 0) {
+ // もっとも新しいログを持ってくる
+ // (すくなくともひとつログが無いと隙間埋めできないため)
+ const recentLog = await this.collection.findOne({
+ group: group,
+ span: span
+ }, {
+ sort: {
+ date: -1
+ },
+ fields: {
+ _id: 0
+ }
+ });
+
+ if (recentLog) {
+ logs = [recentLog];
+ }
+ }
+
// 整形
for (let i = (range - 1); i >= 0; i--) {
const current =