Cron jobs monitor return time out #8706
Unanswered
engeman2008
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Hey @engeman2008 - cron job timeouts mean that the 2nd call to See our docs for more details: https://docs.sentry.io/product/crons/job-monitoring |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using sentry cron for monitoring bullmq jobs
https://docs.sentry.io/product/crons/
const checkInId = Sentry.captureCheckIn({ monitorSlug: jobSlug, status: 'in_progress', })
when job completed
Sentry.captureCheckIn({ checkInId, monitorSlug: jobSlug, status: 'ok', duration: duration, })
but when I check the job Monitor I found it is giving time out
what does that means ?

Beta Was this translation helpful? Give feedback.
All reactions