oneuptime/Common/Utils/CronTime.ts

10 lines
486 B
TypeScript

export const EVERY_MINUTE: string = "* * * * *";
export const EVERY_DAY: string = "0 8 * * *";
export const EVERY_HOUR: string = "1 * * * *";
export const EVERY_FIVE_MINUTE: string = "*/5 * * * *";
export const EVERY_FIVE_SECONDS: string = "*/5 * * * * *";
export const EVERY_WEEK: string = "0 0 * * 0";
export const EVERY_FIFTEEN_MINUTE: string = "*/15 * * * *";
export const EVERY_THIRTY_SECONDS: string = "*/30 * * * * *";
export const EVERY_THIRTY_MINUTES: string = "*/30 * * * *";