diff --git a/src/platform-includes/crons/setup/javascript.deno.mdx b/src/platform-includes/crons/setup/javascript.deno.mdx new file mode 100644 index 0000000000000..338290e927f14 --- /dev/null +++ b/src/platform-includes/crons/setup/javascript.deno.mdx @@ -0,0 +1,26 @@ +## Automatic Check-Ins (Recommended) + +_requires SDK version 7.88.0 or higher_ + +Use the `DenoCron` integration to monitor your [`Deno.cron`](https://deno.com/blog/cron) calls and get notified when a schedule job is missed (or doesn't start when expected), if it fails due to a problem in the runtime (such as an error), or if it fails by exceeding its maximum runtime. + +```ts +import * as Sentry from "https://deno.land/x/sentry/index.mjs"; + +Sentry.init({ + dsn: "__DSN__", + integrations: [new Sentry.DenoCron()], +}); +``` + +## Job Monitoring + + + +## Check-Ins + + + +## Upserting Cron Monitors + + diff --git a/src/platforms/javascript/common/crons/index.mdx b/src/platforms/javascript/common/crons/index.mdx index 566530e5d3664..4ba9cef1462c8 100644 --- a/src/platforms/javascript/common/crons/index.mdx +++ b/src/platforms/javascript/common/crons/index.mdx @@ -15,7 +15,7 @@ supported: Sentry Crons allows you to monitor the uptime and performance of any scheduled, recurring job. Once implemented, it'll allow you to get alerts and metrics to help you solve errors, detect timeouts, and prevent disruptions to your service. - + ## Requirements @@ -25,7 +25,7 @@ Sentry Crons allows you to monitor the uptime and performance of any scheduled, - + ## Requirements