Rocky_Mountain_Vending/.pnpm-store/v10/files/54/df66785b58b67658366d4e8e6ceb3a02f6a92b2996f268813f56e161f77b06d5066fcf55d0d3dad3afbad5a3e73b507ff45dc6fda2633be9a29e16259c9498
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

63 lines
2 KiB
Text

import { withMonitor } from '@sentry/core';
import { replaceCronNames } from './common.js';
/**
* Instruments the `node-schedule` library to send a check-in event to Sentry for each job execution.
*
* ```ts
* import * as Sentry from '@sentry/node';
* import * as schedule from 'node-schedule';
*
* const scheduleWithCheckIn = Sentry.cron.instrumentNodeSchedule(schedule);
*
* const job = scheduleWithCheckIn.scheduleJob('my-cron-job', '* * * * *', () => {
* console.log('You will see this message every minute');
* });
* ```
*/
function instrumentNodeSchedule(lib) {
return new Proxy(lib, {
get(target, prop) {
if (prop === 'scheduleJob') {
// eslint-disable-next-line @typescript-eslint/unbound-method
return new Proxy(target.scheduleJob, {
apply(target, thisArg, argArray) {
const [nameOrExpression, expressionOrCallback, callback] = argArray;
if (
typeof nameOrExpression !== 'string' ||
typeof expressionOrCallback !== 'string' ||
typeof callback !== 'function'
) {
throw new Error(
"Automatic instrumentation of 'node-schedule' requires the first parameter of 'scheduleJob' to be a job name string and the second parameter to be a crontab string",
);
}
const monitorSlug = nameOrExpression;
const expression = expressionOrCallback;
async function monitoredCallback() {
return withMonitor(
monitorSlug,
async () => {
await callback?.();
},
{
schedule: { type: 'crontab', value: replaceCronNames(expression) },
},
);
}
return target.apply(thisArg, [monitorSlug, expression, monitoredCallback]);
},
});
}
return target[prop];
},
});
}
export { instrumentNodeSchedule };
//# sourceMappingURL=node-schedule.js.map