Update uptime.config.ts

This commit is contained in:
2026-07-29 16:32:41 +08:00
committed by GitHub
parent 56764114d7
commit 2d1d329229
+1 -17
View File
@@ -111,23 +111,7 @@ const workerConfig: WorkerConfig = {
// const maintenances: MaintenanceConfig[] = []
const maintenances: MaintenanceConfig[] = [
{
// [Optional] Monitor IDs to be affected by this maintenance
monitors: ['foo_monitor', 'bar_monitor'],
// [Optional] default to "Scheduled Maintenance" if not specified
title: 'Test Maintenance',
// Description of the maintenance, will be shown at status page
body: 'This is a test maintenance, server software upgrade',
// Start time of the maintenance, in UNIX timestamp or ISO 8601 format
start: '2020-01-01T00:00:00+08:00',
// [Optional] end time of the maintenance, in UNIX timestamp or ISO 8601 format
// if not specified, the maintenance will be considered as on-going
end: '2050-01-01T00:00:00+08:00',
// [Optional] color of the maintenance alert at status page, default to "yellow"
color: 'blue',
},
]
const maintenances: MaintenanceConfig[] = [];
// Don't edit this line
export { maintenances, pageConfig, workerConfig }