123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933 |
- import {Fragment} from 'react';
- import merge from 'lodash/merge';
- import {CodeSnippet} from 'sentry/components/codeSnippet';
- import ExternalLink from 'sentry/components/links/externalLink';
- import {t, tct} from 'sentry/locale';
- export interface QuickStartProps {
- cronsUrl?: string;
- dsnKey?: string;
- orgId?: string;
- orgSlug?: string;
- projectId?: string;
- slug?: string;
- }
- const VALUE_DEFAULTS = {
- cronsUrl: '<cron-api-url>',
- dsnKey: '<my-dsn-key>',
- orgId: '<my-organziation-id>',
- orgSlug: '<my-organization-slug>',
- projectId: '<my-project-id>',
- slug: '<my-monitor-slug>',
- };
- function withDefaultProps(props: QuickStartProps): Required<QuickStartProps> {
- return merge(VALUE_DEFAULTS, props);
- }
- export function PythonCronQuickStart(props: QuickStartProps) {
- const {slug} = withDefaultProps(props);
- const code = `import sentry_sdk
- from sentry_sdk.crons import monitor
- # Add this decorator to instrument your python function
- @monitor(monitor_slug='${slug}')
- def tell_the_world(msg):
- print(msg)`;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry Python SDK (min v1.17.0), then instrument your monitor:',
- {
- installLink: <ExternalLink href="https://docs.sentry.io/platforms/python/" />,
- }
- )}
- </div>
- <CodeSnippet language="python">{code}</CodeSnippet>
- </Fragment>
- );
- }
- export function PythonCeleryCronQuickStart(props: QuickStartProps) {
- const {slug, dsnKey} = withDefaultProps(props);
- const setupCode = `import sentry_sdk
- from sentry_sdk.crons import monitor
- from sentry_sdk.integrations.celery import CeleryIntegration
- # @signals.celeryd_init.connect
- @signals.beat_init.connect
- def init_sentry(**kwargs):
- sentry_sdk.init(
- dsn='${dsnKey}',
- integrations=[CeleryIntegration()],
- )
- `;
- const linkTaskCode = `@app.task
- @monitor(monitor_slug='${slug}')
- def tell_the_world(msg):
- print(msg)
- `;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry Python SDK (min v1.17.0), then initialize Sentry either in [celerydInit:celeryd_init] or [beatInit:beat_init] signal:',
- {
- celerydInit: <code />,
- beatInit: <code />,
- installLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/python/guides/celery/" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="python">{setupCode}</CodeSnippet>
- <div>{t('Link your Celery task to your Monitor:')}</div>
- <CodeSnippet language="python">{linkTaskCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function CLICronQuickStart(props: QuickStartProps) {
- const {slug, dsnKey} = withDefaultProps(props);
- const script = `# Example for a Python script:
- export SENTRY_DSN=${dsnKey}
- sentry-cli monitors run ${slug} -- python path/to/file`;
- return (
- <Fragment>
- <div>
- {tct(
- 'Make sure to [installLink:install the Sentry CLI] (min v2.16.1), then instrument your monitor:',
- {
- installLink: (
- <ExternalLink href="https://docs.sentry.io/product/cli/installation/" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="bash">{script}</CodeSnippet>
- </Fragment>
- );
- }
- export function CurlCronQuickStart(props: QuickStartProps) {
- const {cronsUrl, slug} = withDefaultProps(props);
- const url = new URL(cronsUrl.replace('___MONITOR_SLUG___', slug));
- const checkInSuccessCode = `SENTRY_INGEST="${url.origin}"
- SENTRY_CRONS="\${SENTRY_INGEST}${url.pathname}"
- # π‘ Notify Sentry your job is running:
- curl "\${SENTRY_CRONS}?status=in_progress"
- # Execute your scheduled task here...
- # π’ Notify Sentry your job has completed successfully:
- curl "\${SENTRY_CRONS}?status=ok"`;
- const checkInFailCode = `# π΄ Notify Sentry your job has failed:
- curl "\${SENTRY_CRONS}?status=error"`;
- return (
- <Fragment>
- <CodeSnippet language="bash">{checkInSuccessCode}</CodeSnippet>
- <div>{t('To notify Sentry if your job execution fails')}</div>
- <CodeSnippet language="bash">{checkInFailCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function PHPCronQuickStart(props: QuickStartProps) {
- const {slug} = withDefaultProps(props);
- const checkInSuccessCode = `// π‘ Notify Sentry your job is running:
- $checkInId = \\Sentry\\captureCheckIn(
- slug: '${slug}',
- status: CheckInStatus::inProgress()
- );
- // Execute your scheduled task here...
- // π’ Notify Sentry your job has completed successfully:
- \\Sentry\\captureCheckIn(
- slug: '${slug}',
- status: CheckInStatus::ok(),
- checkInId: $checkInId,
- );`;
- const checkInFailCode = `// π΄ Notify Sentry your job has failed:
- \\Sentry\\captureCheckIn(
- slug: '${slug}',
- status: CheckInStatus::error()
- checkInId: $checkInId,
- );`;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry PHP SDK (min v3.16.0), then instrument your monitor:',
- {
- installLink: <ExternalLink href="https://docs.sentry.io/platforms/php/" />,
- }
- )}
- </div>
- <CodeSnippet language="php">{checkInSuccessCode}</CodeSnippet>
- <div>{t('To notify Sentry if your job execution fails')}</div>
- <CodeSnippet language="php">{checkInFailCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function PHPLaravelCronQuickStart(props: QuickStartProps) {
- const {slug} = withDefaultProps(props);
- const code = `protected function schedule(Schedule $schedule)
- {
- $schedule->command('emails:send')
- ->everyHour()
- ->sentryMonitor('${slug}'); // add this line
- }`;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry PHP Laravel SDK (min v3.3.1), then add the [sentryMonitor:sentryMonitor()] call to your scheduled tasks defined in your [kernel:app/Console/Kernel.php] file:',
- {
- sentryMonitor: <code />,
- kernel: <code />,
- installLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/php/guides/laravel/" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="php">{code}</CodeSnippet>
- </Fragment>
- );
- }
- export function NodeJSCronQuickStart(props: QuickStartProps) {
- const {slug} = withDefaultProps(props);
- const checkInSuccessCode = `// π‘ Notify Sentry your job is running:
- const checkInId = Sentry.captureCheckIn({
- monitorSlug: "${slug}",
- status: "in_progress",
- });
- // Execute your scheduled task here...
- // π’ Notify Sentry your job has completed successfully:
- Sentry.captureCheckIn({
- checkInId,
- monitorSlug: "${slug}",
- status: "ok",
- });`;
- const checkInFailCode = `// π΄ Notify Sentry your job has failed:
- Sentry.captureCheckIn({
- checkInId,
- monitorSlug: "${slug}",
- status: "error",
- });`;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry Node SDK (min v7.52), then instrument your monitor:',
- {
- installLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/javascript/guides/node/" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="javascript">{checkInSuccessCode}</CodeSnippet>
- <div>{t('To notify Sentry if your job execution fails')}</div>
- <CodeSnippet language="javascript">{checkInFailCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function GoCronQuickStart(props: QuickStartProps) {
- const {slug} = withDefaultProps(props);
- const checkInSuccessCode = `// π‘ Notify Sentry your job is running:
- checkinId := sentry.CaptureCheckIn(
- &sentry.CheckIn{
- MonitorSlug: "${slug}",
- Status: sentry.CheckInStatusInProgress,
- },
- nil,
- )
- // Execute your scheduled task here...
- // π’ Notify Sentry your job has completed successfully:
- sentry.CaptureCheckIn(
- &sentry.CheckIn{
- ID: *checkinId,
- MonitorSlug: "${slug}",
- Status: sentry.CheckInStatusOK,
- },
- nil,
- )`;
- const checkInFailCode = `// π΄ Notify Sentry your job has failed:
- sentry.CaptureCheckIn(
- &sentry.CheckIn{
- ID: *checkinId,
- MonitorSlug: "${slug}",
- Status: sentry.CheckInStatusError,
- },
- nil,
- )`;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry Go SDK (min v0.23.0), then instrument your monitor:',
- {
- installLink: <ExternalLink href="https://docs.sentry.io/platforms/go/" />,
- }
- )}
- </div>
- <CodeSnippet language="go">{checkInSuccessCode}</CodeSnippet>
- <div>{t('To notify Sentry if your job execution fails')}</div>
- <CodeSnippet language="go">{checkInFailCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function JavaCronQuickStart(props: QuickStartProps) {
- const {slug} = withDefaultProps(props);
- const checkInSuccessCode = `import io.sentry.util.CheckInUtils;
- String result = CheckInUtils.withCheckIn("${slug}", () -> {
- // Execute your scheduled task here...
- return "computed result";
- });`;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry Java SDK (min v6.30.0), then instrument your monitor:',
- {
- installLink: <ExternalLink href="https://docs.sentry.io/platforms/java/" />,
- }
- )}
- </div>
- <CodeSnippet language="java">{checkInSuccessCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function JavaSpringBootCronQuickStart(props: QuickStartProps) {
- const {slug} = withDefaultProps(props);
- const code = `import io.sentry.spring.jakarta.checkin.SentryCheckIn;
- @Component
- public class CustomJob {
- @Scheduled(fixedRate = 3 * 60 * 1000L)
- @SentryCheckIn("${slug}") // π
- void execute() throws InterruptedException {
- // your task code
- }
- }`;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry Spring Boot SDK (min v6.30.0), then instrument your monitor:',
- {
- installLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/java/guides/spring-boot/" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="java">{code}</CodeSnippet>
- </Fragment>
- );
- }
- export function JavaQuartzCronQuickStart(props: QuickStartProps) {
- const {slug} = withDefaultProps(props);
- const code = `import io.sentry.quartz.SentryJobListener;
- // you can set the monitor slug on the job detail
- JobDetailFactoryBean jobDetailFactory = new JobDetailFactoryBean();
- jobDetailFactory.setJobDataAsMap(Collections.singletonMap(SentryJobListener.SENTRY_SLUG_KEY, "${slug}"));
- // you can also set the monitor slug on the trigger
- SimpleTriggerFactoryBean trigger = new SimpleTriggerFactoryBean();
- trigger.setJobDataAsMap(Collections.singletonMap(SENTRY_SLUG_KEY, "${slug}"));`;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry Java SDK (min v6.30.0), make sure `SentryJobListener` is [configureLink:configured], then instrument your monitor:',
- {
- installLink: <ExternalLink href="https://docs.sentry.io/platforms/java/" />,
- configureLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/java/configuration/integrations/quartz/" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="java">{code}</CodeSnippet>
- </Fragment>
- );
- }
- export function CeleryBeatAutoDiscovery(props: QuickStartProps) {
- const {dsnKey} = props;
- const code = `# tasks.py
- from celery import signals
- import sentry_sdk
- from sentry_sdk.integrations.celery import CeleryIntegration
- @signals.celeryd_init.connect
- def init_sentry(**kwargs):
- sentry_sdk.init(
- dsn='${dsnKey ?? '<PROJECT DSN>'}',
- integrations=[CeleryIntegration(monitor_beat_tasks=True)], # π
- environment="local.dev.grace",
- release="v1.0",
- )
- `;
- return (
- <Fragment>
- <div>
- {tct(
- 'Use the [additionalDocs: Celery integration] to monitor your Celery periodic tasks. Initialize Sentry in the celeryd_init or beat_init signal.',
- {
- additionalDocs: (
- <ExternalLink href="https://docs.sentry.io/platforms/python/guides/celery/crons/#celery-beat-auto-discovery" />
- ),
- }
- )}
- </div>
- <div>{t('Make sure to set monitor_beat_tasks=True in CeleryIntegration:')}</div>
- <CodeSnippet language="python">{code}</CodeSnippet>
- </Fragment>
- );
- }
- export function PHPUpsertPlatformGuide() {
- const scheduleCode = `// Create a crontab schedule object (every 10 minutes)
- $monitorSchedule = \\Sentry\\MonitorSchedule::crontab('*/10 * * * *');
- // Or create an interval schedule object (every 10 minutes)
- $monitorSchedule = \\Sentry\\MonitorSchedule::interval(10, \\Sentry\\MonitorScheduleUnit::minute());`;
- const upsertCode = `// Create a config object
- $monitorConfig = new \\Sentry\\MonitorConfig(
- $monitorSchedule,
- checkinMargin: 5, // Optional check-in margin in minutes
- maxRuntime: 15, // Optional max runtime in minutes
- timezone: 'Europe/Vienna', // Optional timezone
- );
- // π‘ Notify Sentry your job is running:
- $checkInId = \\Sentry\\captureCheckIn(
- slug: '<monitor-slug>',
- status: \\Sentry\\CheckInStatus::inProgress(),
- monitorConfig: $monitorConfig,
- );
- // Execute your scheduled task here...
- // π’ Notify Sentry your job has completed successfully:
- \\Sentry\\captureCheckIn(
- slug: '<monitor-slug>',
- status: \\Sentry\\CheckInStatus::inProgress(),
- checkInId: $checkInId,
- );`;
- return (
- <Fragment>
- <div>
- {tct(
- 'You can use the [additionalDocs: PHP SDK] to create and update your Monitors programmatically with code rather than creating them manually.',
- {
- additionalDocs: (
- <ExternalLink href="https://docs.sentry.io/platforms/php/crons/#upserting-cron-monitors" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="php">{scheduleCode}</CodeSnippet>
- <CodeSnippet language="php">{upsertCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function LaravelUpsertPlatformGuide() {
- const basicConfigCode = `protected function schedule(Schedule $schedule)
- {
- $schedule->command('emails:send')
- ->everyHour()
- ->sentryMonitor(); // add this line
- }`;
- const advancedConfigCode = `protected function schedule(Schedule $schedule)
- {
- $schedule->command('emails:send')
- ->everyHour()
- ->sentryMonitor(
- // Specify the slug of the job monitor in case of duplicate commands or if the monitor was created in the UI
- monitorSlug: null,
- // Check-in margin in minutes
- checkInMargin: 5,
- // Max runtime in minutes
- maxRuntime: 15,
- // In case you want to configure the job monitor exclusively in the UI, you can turn off sending the monitor config with the check-in.
- // Passing a monitor-slug is required in this case.
- updateMonitorConfig: false,
- )
- }`;
- return (
- <Fragment>
- <div>
- {tct('Use the [additionalDocs: Laravel SDK] to monitor your scheduled task.', {
- additionalDocs: (
- <ExternalLink href="https://docs.sentry.io/platforms/php/guides/laravel/crons/#job-monitoring" />
- ),
- })}
- </div>
- <div>
- {t(
- 'To set up, add the "sentryMonitor()" macro to your scheduled tasks defined in your "app/Console/Kernel.php" file:'
- )}
- </div>
- <CodeSnippet language="php">{basicConfigCode}</CodeSnippet>
- <div>
- {t(
- 'By default, the Laravel SDK will infer various parameters of your scheduled task. For greater control, we expose some optional parameters on the sentryMonitor() macro.'
- )}
- </div>
- <CodeSnippet language="php">{advancedConfigCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function NodeJsUpsertPlatformGuide() {
- const upsertCode = `const checkInId = Sentry.captureCheckIn(
- {
- monitorSlug: '<monitor-slug>',
- status: 'in_progress',
- },
- {
- schedule: { // Specify your schedule options here
- type: 'crontab',
- value: '* * * * *',
- },
- checkinMargin: 1,
- maxRuntime: 1,
- timezone: 'America/Los_Angeles',
- });
- Sentry.captureCheckIn({
- checkInId,
- monitorSlug: '<monitor-slug>',
- status: 'ok',
- });
- `;
- return (
- <Fragment>
- <div>
- {tct(
- 'Use the [additionalDocs:Node SDK] to create and update your Monitors programmatically with code rather than creating them manually.',
- {
- additionalDocs: (
- <ExternalLink href="https://docs.sentry.io/platforms/javascript/guides/node/crons/" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="javascript">{upsertCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function GoUpsertPlatformGuide() {
- const scheduleCode = `// Create a crontab schedule object (every 10 minutes)
- monitorSchedule := sentry.CrontabSchedule("*/10 * * * *")
- // Or create an interval schedule object (every 10 minutes)
- monitorSchedule := sentry.IntervalSchedule(10, sentry.MonitorScheduleUnitMinute)
- `;
- const upsertCode = `// Create a monitor config object
- monitorConfig := &sentry.MonitorConfig{
- Schedule: monitorSchedule,
- MaxRuntime: 2,
- CheckInMargin: 1,
- }
- // π‘ Notify Sentry your job is running:
- checkinId := sentry.CaptureCheckIn(
- &sentry.CheckIn{
- MonitorSlug: "<monitor-slug>",
- Status: sentry.CheckInStatusInProgress,
- },
- monitorConfig,
- )
- // Execute your scheduled task here...
- // π’ Notify Sentry your job has completed successfully:
- sentry.CaptureCheckIn(
- &sentry.CheckIn{
- MonitorSlug: "<monitor-slug>",
- Status: sentry.CheckInStatusOK,
- },
- monitorConfig,
- )`;
- return (
- <Fragment>
- <div>
- {tct(
- 'You can use the [additionalDocs: Go SDK] to create and update your Monitors programmatically with code rather than creating them manually.',
- {
- additionalDocs: (
- <ExternalLink href="https://docs.sentry.io/platforms/go/crons/#upserting-cron-monitors" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="go">{scheduleCode}</CodeSnippet>
- <CodeSnippet language="go">{upsertCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function JavaUpsertPlatformGuide() {
- const scheduleCode = `import io.sentry.MonitorSchedule;
- import io.sentry.MonitorScheduleUnit;
- // Create a crontab schedule object (every 10 minutes)
- MonitorSchedule monitorSchedule = MonitorSchedule.crontab("*/10 * * * *");
- // Or create an interval schedule object (every 10 minutes)
- MonitorSchedule monitorSchedule = MonitorSchedule.interval(10, MonitorScheduleUnit.MINUTE);`;
- const upsertCode = `import io.sentry.MonitorConfig;
- import io.sentry.util.CheckInUtils;
- // Create a config object
- MonitorConfig monitorConfig = new MonitorConfig(monitorSchedule);
- monitorConfig.setTimezone("Europe/Vienna"); // Optional timezone
- monitorConfig.setCheckinMargin(5L); // Optional check-in margin in minutes
- monitorConfig.setMaxRuntime(15L); // Optional max runtime in minutes
- String result = CheckInUtils.withCheckIn("<monitor-slug>", monitorConfig, () -> {
- // Execute your scheduled task here...
- return "computed result";
- });`;
- return (
- <Fragment>
- <div>
- {tct(
- 'You can use the [additionalDocs: Java SDK] to create and update your Monitors programmatically with code rather than creating them manually.',
- {
- additionalDocs: (
- <ExternalLink href="https://docs.sentry.io/platforms/java/crons/#upserting-cron-monitors" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="java">{scheduleCode}</CodeSnippet>
- <CodeSnippet language="java">{upsertCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function RubyUpsertPlatformGuide() {
- const configCode = `# Create a config from a crontab schedule (every 10 minutes)
- monitor_config = Sentry::Cron::MonitorConfig.from_crontab(
- '5 * * * *',
- checkin_margin: 5, # Optional check-in margin in minutes
- max_runtime: 15, # Optional max runtime in minutes
- timezone: 'Europe/Vienna', # Optional timezone
- )
- # Create a config from an interval schedule (every 10 minutes)
- monitor_config = Sentry::Cron::MonitorConfig.from_interval(
- 10,
- :minute,
- checkin_margin: 5, # Optional check-in margin in minutes
- max_runtime: 15, # Optional max runtime in minutes
- timezone: 'Europe/Vienna', # Optional timezone
- )`;
- const upsertCode = `# π‘ Notify Sentry your job is running:
- check_in_id = Sentry.capture_check_in(
- '<monitor-slug>',
- :in_progress,
- monitor_config: monitor_config
- )
- # Execute your scheduled task here...
- # π’ Notify Sentry your job has completed successfully:
- Sentry.capture_check_in(
- '<monitor-slug>',
- :ok,
- check_in_id: check_in_id,
- monitor_config: monitor_config
- )`;
- return (
- <Fragment>
- <div>
- {tct(
- 'You can use the [additionalDocs: Ruby SDK] to create and update your Monitors programmatically with code rather than creating them manually.',
- {
- additionalDocs: (
- <ExternalLink href="https://docs.sentry.io/platforms/ruby/crons/#upserting-cron-monitors" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="ruby">{configCode}</CodeSnippet>
- <CodeSnippet language="ruby">{upsertCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function RubyRailsMixinPlatformGuide() {
- const activeJobCode = `class ExampleActiveJob < ApplicationJob
- include Sentry::Cron::MonitorCheckIns
- # slug defaults to the job class name if not provided
- sentry_monitor_check_ins slug: 'custom', monitor_config: Sentry::Cron::MonitorConfig.from_crontab('5 * * * *')
- def perform(*args)
- # do stuff
- end
- end`;
- const sidekiqJobCode = `class ExampleSidekiqJob
- include Sidekiq::Job
- include Sentry::Cron::MonitorCheckIns
- # slug defaults to the job class name if not provided
- sentry_monitor_check_ins slug: 'custom', monitor_config: Sentry::Cron::MonitorConfig.from_crontab('5 * * * *')
- def perform(*args)
- # do stuff
- end
- end`;
- const customCode = `# define the monitor config with an interval
- sentry_monitor_check_ins slug: 'custom', monitor_config: Sentry::Cron::MonitorConfig.from_interval(1, :minute)
- # define the monitor config with a crontab
- sentry_monitor_check_ins slug: 'custom', monitor_config: Sentry::Cron::MonitorConfig.from_crontab('5 * * * *')`;
- return (
- <Fragment>
- <div>
- {tct(
- 'You can use the mixin module from the [additionalDocs: Ruby SDK] to automatically capture check-ins from your jobs rather than creating them manually.',
- {
- additionalDocs: (
- <ExternalLink href="https://docs.sentry.io/platforms/ruby/crons/#job-monitoring" />
- ),
- }
- )}
- </div>
- <div>{t('ActiveJob Example:')}</div>
- <CodeSnippet language="ruby">{activeJobCode}</CodeSnippet>
- <div>{t('Sidekiq Example:')}</div>
- <CodeSnippet language="ruby">{sidekiqJobCode}</CodeSnippet>
- <div>
- {t(
- 'You must pass in the monitor config explicity for upserts or you must create a new monitor explicitly in the UI.'
- )}
- </div>
- <CodeSnippet language="ruby">{customCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function RubySidekiqAutoPlatformGuide() {
- const sidekiqCronCode = `Sentry.init do |config|
- # for sidekiq-cron
- config.enabled_patches += [:sidekiq_cron]
- # for sidekiq-scheduler
- config.enabled_patches += [:sidekiq_scheduler]
- end`;
- return (
- <Fragment>
- <div>
- {tct(
- 'If you use gems such as [sidekiqCronLink:sidekiq-cron] or [sidekiqSchedulerLink:sidekiq-scheduler] to manage your scheduled jobs, Sentry can automatically monitor all of them for you without any additional configuration.',
- {
- sidekiqCronLink: (
- <ExternalLink href="https://github.com/sidekiq-cron/sidekiq-cron" />
- ),
- sidekiqSchedulerLink: (
- <ExternalLink href="https://github.com/sidekiq-scheduler/sidekiq-scheduler" />
- ),
- }
- )}
- </div>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry Ruby and Sidekiq SDKs (min v5.14.0) and turn on the relevant patches:',
- {
- installLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/ruby/guides/sidekiq/" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="ruby">{sidekiqCronCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function RubyCronQuickStart(props: QuickStartProps) {
- const {slug} = withDefaultProps(props);
- const checkInSuccessCode = `# π‘ Notify Sentry your job is running:
- check_in_id = Sentry.capture_check_in('${slug}', :in_progress)
- # Execute your scheduled task here...
- # π’ Notify Sentry your job has completed successfully:
- Sentry.capture_check_in('${slug}', :ok, check_in_id: check_in_id)`;
- const checkInFailCode = `# π΄ Notify Sentry your job has failed:
- Sentry.capture_check_in('${slug}', :error, check_in_id: check_in_id)`;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry Ruby SDK (min v5.12.0), then instrument your monitor:',
- {
- installLink: <ExternalLink href="https://docs.sentry.io/platforms/ruby/" />,
- }
- )}
- </div>
- <CodeSnippet language="ruby">{checkInSuccessCode}</CodeSnippet>
- <div>{t('To notify Sentry if your job execution fails')}</div>
- <CodeSnippet language="ruby">{checkInFailCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function RubyRailsCronQuickStart(props: QuickStartProps) {
- const {slug} = withDefaultProps(props);
- const mixinCode = `class ExampleJob < ApplicationJob
- include Sentry::Cron::MonitorCheckIns
- # slug defaults to the job class name
- sentry_monitor_check_ins slug: '${slug}'
- def perform(*args)
- # do stuff
- end
- end`;
- const customCode = `# define the monitor config with an interval
- sentry_monitor_check_ins slug: '${slug}', monitor_config: Sentry::Cron::MonitorConfig.from_interval(1, :minute)
- # define the monitor config with a crontab
- sentry_monitor_check_ins slug: '${slug}', monitor_config: Sentry::Cron::MonitorConfig.from_crontab('5 * * * *')`;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry Ruby and Rails SDKs (min v5.12.0), then instrument your job with our mixin module:',
- {
- installLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/ruby/guides/rails/" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="ruby">{mixinCode}</CodeSnippet>
- <div>{t('You can pass in optional attributes as follows:')}</div>
- <CodeSnippet language="ruby">{customCode}</CodeSnippet>
- </Fragment>
- );
- }
- export function RubySidekiqCronQuickStart(props: QuickStartProps) {
- const {slug} = withDefaultProps(props);
- const mixinCode = `class ExampleJob
- incude Sidekiq::Job
- include Sentry::Cron::MonitorCheckIns
- # slug defaults to the job class name
- sentry_monitor_check_ins slug: '${slug}'
- def perform(*args)
- # do stuff
- end
- end`;
- const customCode = `# define the monitor config with an interval
- sentry_monitor_check_ins slug: '${slug}', monitor_config: Sentry::Cron::MonitorConfig.from_interval(1, :minute)
- # define the monitor config with a crontab
- sentry_monitor_check_ins slug: '${slug}', monitor_config: Sentry::Cron::MonitorConfig.from_crontab('5 * * * *')`;
- return (
- <Fragment>
- <div>
- {tct(
- '[installLink:Install and configure] the Sentry Ruby and Sidekiq SDKs (min v5.12.0), then instrument your job with our mixin module:',
- {
- installLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/ruby/guides/sidekiq/" />
- ),
- }
- )}
- </div>
- <CodeSnippet language="ruby">{mixinCode}</CodeSnippet>
- <div>{t('You can pass in optional attributes as follows:')}</div>
- <CodeSnippet language="ruby">{customCode}</CodeSnippet>
- </Fragment>
- );
- }
|