mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 14:49:07 +00:00
56 lines
1.8 KiB
TypeScript
56 lines
1.8 KiB
TypeScript
import RunCron from "../../Utils/Cron";
|
|
import LIMIT_MAX from "Common/Types/Database/LimitMax";
|
|
import OneUptimeDate from "Common/Types/Date";
|
|
import OnCallDutyPolicyStatus from "Common/Types/OnCallDutyPolicy/OnCallDutyPolicyStatus";
|
|
import { EVERY_MINUTE } from "Common/Utils/CronTime";
|
|
import { IsDevelopment } from "Common/Server/EnvironmentConfig";
|
|
import OnCallDutyPolicyExecutionLogService from "Common/Server/Services/OnCallDutyPolicyExecutionLogService";
|
|
import QueryHelper from "Common/Server/Types/Database/QueryHelper";
|
|
import OnCallDutyPolicyExecutionLog from "Common/Models/DatabaseModels/OnCallDutyPolicyExecutionLog";
|
|
|
|
/**
|
|
* Jobs move from Started to Executing in seconds. If it takes more than 5 minutes, it's stuck. So, mark them as error
|
|
*/
|
|
|
|
RunCron(
|
|
"OnCallDutyPolicyExecutionLog:TimeoutStuckExecutions",
|
|
{
|
|
schedule: IsDevelopment ? EVERY_MINUTE : EVERY_MINUTE,
|
|
runOnStartup: false,
|
|
},
|
|
async () => {
|
|
// get all pending on-call executions and execute them all at once.
|
|
const fiveMinsAgo: Date = OneUptimeDate.getSomeMinutesAgo(5);
|
|
|
|
const stuckExecutions: Array<OnCallDutyPolicyExecutionLog> =
|
|
await OnCallDutyPolicyExecutionLogService.findBy({
|
|
query: {
|
|
status: OnCallDutyPolicyStatus.Started,
|
|
createdAt: QueryHelper.lessThan(fiveMinsAgo),
|
|
},
|
|
select: {
|
|
_id: true,
|
|
createdAt: true,
|
|
},
|
|
limit: LIMIT_MAX,
|
|
skip: 0,
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
});
|
|
|
|
for (const executionLog of stuckExecutions) {
|
|
await OnCallDutyPolicyExecutionLogService.updateOneById({
|
|
id: executionLog.id!,
|
|
data: {
|
|
status: OnCallDutyPolicyStatus.Error,
|
|
statusMessage: "Policy Execution timed out.",
|
|
},
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
});
|
|
}
|
|
},
|
|
);
|