Files
klz-cables.com/.pnpm-store/v10/files/17/0ff90374183fb41a9365ca401d5d3b954dbc6e886774b34ac9b610ec518260d332144d8cf32c7b13b2156363d75c919a6f112aac324d6de014b5d949638be2
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

121 lines
3.3 KiB
Plaintext

import { withMonitor, captureException } from '@sentry/core';
import { replaceCronNames } from './common.js';
const ERROR_TEXT = 'Automatic instrumentation of CronJob only supports crontab string';
/**
* Instruments the `cron` library to send a check-in event to Sentry for each job execution.
*
* ```ts
* import * as Sentry from '@sentry/node';
* import { CronJob } from 'cron';
*
* const CronJobWithCheckIn = Sentry.cron.instrumentCron(CronJob, 'my-cron-job');
*
* // use the constructor
* const job = new CronJobWithCheckIn('* * * * *', () => {
* console.log('You will see this message every minute');
* });
*
* // or from
* const job = CronJobWithCheckIn.from({ cronTime: '* * * * *', onTick: () => {
* console.log('You will see this message every minute');
* });
* ```
*/
function instrumentCron(lib, monitorSlug) {
let jobScheduled = false;
return new Proxy(lib, {
construct(target, args) {
const [cronTime, onTick, onComplete, start, timeZone, ...rest] = args;
if (typeof cronTime !== 'string') {
throw new Error(ERROR_TEXT);
}
if (jobScheduled) {
throw new Error(`A job named '${monitorSlug}' has already been scheduled`);
}
jobScheduled = true;
const cronString = replaceCronNames(cronTime);
async function monitoredTick(context, onComplete) {
return withMonitor(
monitorSlug,
async () => {
try {
await onTick(context, onComplete);
} catch (e) {
captureException(e, {
mechanism: {
handled: false,
type: 'auto.function.cron.instrumentCron',
},
});
throw e;
}
},
{
schedule: { type: 'crontab', value: cronString },
timezone: timeZone || undefined,
},
);
}
return new target(cronTime, monitoredTick, onComplete, start, timeZone, ...rest);
},
get(target, prop) {
if (prop === 'from') {
return (param) => {
const { cronTime, onTick, timeZone } = param;
if (typeof cronTime !== 'string') {
throw new Error(ERROR_TEXT);
}
if (jobScheduled) {
throw new Error(`A job named '${monitorSlug}' has already been scheduled`);
}
jobScheduled = true;
const cronString = replaceCronNames(cronTime);
param.onTick = async (context, onComplete) => {
return withMonitor(
monitorSlug,
async () => {
try {
await onTick(context, onComplete);
} catch (e) {
captureException(e, {
mechanism: {
handled: false,
type: 'auto.function.cron.instrumentCron',
},
});
throw e;
}
},
{
schedule: { type: 'crontab', value: cronString },
timezone: timeZone || undefined,
},
);
};
return target.from(param);
};
} else {
return target[prop];
}
},
});
}
export { instrumentCron };
//# sourceMappingURL=cron.js.map