mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-27 08:44:04 +00:00
wip
This commit is contained in:
parent
7046a2e0f6
commit
67ad0f79b3
2 changed files with 37 additions and 7 deletions
|
@ -6,6 +6,8 @@ const path = require("path");
|
|||
const { EmbeddedMariaDB } = require("./embedded-mariadb");
|
||||
const mysql = require("mysql2/promise");
|
||||
const { Settings } = require("./settings");
|
||||
const { UptimeCalculator } = require("./uptime-calculator");
|
||||
const dayjs = require("dayjs");
|
||||
|
||||
/**
|
||||
* Database & App Data Folder
|
||||
|
@ -734,7 +736,7 @@ class Database {
|
|||
log.debug("db", "Enter Migrate Aggregate Table function");
|
||||
|
||||
//
|
||||
let migrated = Settings.get("migratedAggregateTable");
|
||||
let migrated = await Settings.get("migratedAggregateTable");
|
||||
|
||||
if (migrated) {
|
||||
log.debug("db", "Migrated, skip migration");
|
||||
|
@ -750,6 +752,7 @@ class Database {
|
|||
let dates = await trx.raw(`
|
||||
SELECT DISTINCT DATE(time) AS date
|
||||
FROM heartbeat
|
||||
ORDER BY date ASC
|
||||
`);
|
||||
|
||||
// Get a list of unique monitors from the heartbeat table, using raw sql
|
||||
|
@ -758,17 +761,41 @@ class Database {
|
|||
FROM heartbeat
|
||||
`);
|
||||
|
||||
// Show warning if stat_* tables are not empty
|
||||
// Stop if stat_* tables are not empty
|
||||
for (let table of [ "stat_minutely", "stat_hourly", "stat_daily" ]) {
|
||||
let count = await trx(table).count("*").first();
|
||||
if (count.count > 0) {
|
||||
log.warn("db", `Table ${table} is not empty, migration may cause data loss (Maybe you were using 2.0.0-dev?)`);
|
||||
let countResult = await trx.raw(`SELECT COUNT(*) AS count FROM ${table}`);
|
||||
let count = countResult[0].count;
|
||||
if (count > 0) {
|
||||
log.warn("db", `Aggregate table ${table} is not empty, migration will not be started (Maybe you were using 2.0.0-dev?)`);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
console.log("Dates", dates);
|
||||
console.log("Monitors", monitors);
|
||||
|
||||
for (let monitor of monitors) {
|
||||
for (let date of dates) {
|
||||
log.info("db", `Migrating monitor ${monitor.monitor_id} on date ${date.date}`);
|
||||
|
||||
// New Uptime Calculator
|
||||
let calculator = new UptimeCalculator();
|
||||
|
||||
// TODO: Pass transaction to the calculator
|
||||
// calculator.setTransaction(trx);
|
||||
|
||||
// Get all the heartbeats for this monitor and date
|
||||
let heartbeats = await trx("heartbeat")
|
||||
.where("monitor_id", monitor.monitor_id)
|
||||
.whereRaw("DATE(time) = ?", [ date.date ])
|
||||
.orderBy("time", "asc");
|
||||
|
||||
for (let heartbeat of heartbeats) {
|
||||
calculator.update(heartbeat.status, heartbeat.ping, dayjs(heartbeat.time));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
trx.commit();
|
||||
|
||||
//await Settings.set("migratedAggregateTable", true);
|
||||
|
|
|
@ -189,11 +189,14 @@ class UptimeCalculator {
|
|||
/**
|
||||
* @param {number} status status
|
||||
* @param {number} ping Ping
|
||||
* @param {dayjs.Dayjs} date Date (Only for migration)
|
||||
* @returns {dayjs.Dayjs} date
|
||||
* @throws {Error} Invalid status
|
||||
*/
|
||||
async update(status, ping = 0) {
|
||||
let date = this.getCurrentDate();
|
||||
async update(status, ping = 0, date) {
|
||||
if (!date) {
|
||||
date = this.getCurrentDate();
|
||||
}
|
||||
|
||||
let flatStatus = this.flatStatus(status);
|
||||
|
||||
|
|
Loading…
Reference in a new issue