-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Next.JS SDK Crons to be Opt-in #8701
Comments
Right now this is gated behind a flag // next.config.js
const nextConfig = {
sentry: {
automaticVercelMonitors: false,
},
}; If we move ahead with making this false by default, maybe we need to introduce another option that controls what routes get instrumented. @lforst your thoughts? |
My thoughts:
Considering the points above I would contemplate keeping the functionality as-is. |
@lforst it's not like we turn it on by default - we explicitly add a Since crons is a beta product, I think it's reasonable to turn it off. @gaprl maybe we can add some in product helpers that guide people toward this? (like hey you've upgraded to the most recent Next SDK version, update your config). |
On December 11th, billing will be turned on |
Currently, instrumentation for Crons monitors for our Next.JS is automatic. However, in preparations for GA and to enable billing, we should update this behavior to be opt-in instead, in a similar manner to our Celery Beat integration.
Otherwise, customers might face situations where we unintentionally bill them for Crons.
The text was updated successfully, but these errors were encountered: