refactor: update cronjob clear time

This commit is contained in:
moonrailgun 2024-10-20 22:29:07 +08:00
parent 3dca8fc27c
commit 83850f2981

View File

@ -242,14 +242,14 @@ async function statDailyUsage() {
}
/**
* Clear over 2 week data
* Clear over 1 month data
*/
async function clearMonitorDataDaily() {
if (env.disableAutoClear) {
return;
}
const date = dayjs().subtract(2, 'weeks').toDate();
const date = dayjs().subtract(1, 'months').toDate();
logger.info(
'[clearMonitorDataDaily] Start clear monitor data before:',
date.toISOString()
@ -269,14 +269,14 @@ async function clearMonitorDataDaily() {
}
/**
* Clear over 2 week data
* Clear over 1 month data
*/
async function clearMonitorEventDaily() {
if (env.disableAutoClear) {
return;
}
const date = dayjs().subtract(2, 'weeks').toDate();
const date = dayjs().subtract(1, 'month').toDate();
logger.info(
'[clearMonitorEventDaily] Start clear monitor data before:',
date.toISOString()