Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions includes/javascript-crons-job-monitoring.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,11 @@ Sentry.withMonitor("<monitor-slug>", () => {
});
```

<Alert level="info">

`Sentry.withMonitor()` does not create new a trace. Events and errors that occur within the monitored callback will be associated with the current trace context.

</Alert>


If you are using an SDK version prior to `7.76.0`, you can use the `Sentry.captureCheckIn()` API documented below.
Loading