-
Notifications
You must be signed in to change notification settings - Fork 370
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
fix: Capture less Sentry performance data in production #9487
fix: Capture less Sentry performance data in production #9487
Conversation
packages/manager/.changeset/pr-9487-tech-stories-1691069597065.md
Outdated
Show resolved
Hide resolved
Co-authored-by: jdamore-linode <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We used 100,000 transactions in 5 days with a capture rate of 20%. We need 100,000 transactions to last us 1 month so we need to use a percentage less than ~16%
I'm probably misunderstanding how tracesSampleRate
works, so I'm approving this in the meantime -- if a sample rate of 20% causes us to meet our 100,000 transaction limit in 5 days, won't a sample rate of 10% cause us to meet our limit in 10 days?
Yikes, my fault. How does 2.5% sound? If we capture 2.5% of errors, we'd hit our limit in 40 days @jdamore-linode. |
That sounds like it would work to me! |
* capture `10%` * Added changeset: Decreace Sentry capture rate * Update packages/manager/.changeset/pr-9487-tech-stories-1691069597065.md Co-authored-by: jdamore-linode <[email protected]> * capture 2.5% of transactions --------- Co-authored-by: Banks Nussman <[email protected]> Co-authored-by: jdamore-linode <[email protected]>
* capture `10%` * Added changeset: Decreace Sentry capture rate * Update packages/manager/.changeset/pr-9487-tech-stories-1691069597065.md Co-authored-by: jdamore-linode <[email protected]> * capture 2.5% of transactions --------- Co-authored-by: Banks Nussman <[email protected]> Co-authored-by: jdamore-linode <[email protected]>
* capture `10%` * Added changeset: Decreace Sentry capture rate * Update packages/manager/.changeset/pr-9487-tech-stories-1691069597065.md Co-authored-by: jdamore-linode <[email protected]> * capture 2.5% of transactions --------- Co-authored-by: Banks Nussman <[email protected]> Co-authored-by: jdamore-linode <[email protected]>
Description 📝
We used 100,000 transactions in 5 days with a capture rate of 20%. We need 100,000 transactions to last us 1 month so we need to use a percentage less than ~3.75%
How to test 🧪