-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
add docs for supabase integration #13545
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
2 Skipped Deployments
|
Bundle ReportChanges will increase total bundle size by 246 bytes (0.0%) ⬆️. This is within the configured threshold ✅ Detailed changes
Affected Assets, Files, and Routes:view changes for bundle: sentry-docs-server-cjsAssets Changed:
view changes for bundle: sentry-docs-client-array-pushAssets Changed:
|
onurtemizkan
approved these changes
Apr 29, 2025
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.
Looks great to me! 🚀
docs/platforms/javascript/common/configuration/integrations/supabase.mdx
Outdated
Show resolved
Hide resolved
…pabase.mdx Co-authored-by: Onur Temizkan <[email protected]>
removing this for now, i think we can can discuss if it really helps to enhance hte docs later. For now I think it is a distraction ```### Using the Instrumentation Method The instrumentation method is available for specific use cases where the integration method isn't suitable: ```javascript import * as Sentry from '@sentry/browser'; import { createClient } from '@supabase/supabase-js'; const supabaseClient = createClient('YOUR_SUPABASE_URL', 'YOUR_SUPABASE_KEY'); Sentry.instrumentSupabaseClient(supabaseClient); ``` Use this method when: - You need to instrument a Supabase client that was created before Sentry was initialized - You want to add instrumentation to multiple Supabase clients at different times - You're working in a codebase where you can't modify the Sentry initialization - You need to add instrumentation dynamically after the application has started - You're working with a legacy codebase where modifying the Sentry initialization is difficult ```
codyde
added a commit
that referenced
this pull request
May 1, 2025
* 'master' of https://github.com/getsentry/sentry-docs: Add "Data Collected" page for Godot SDK (and more) (#13533) Clarify FK docs (#13562) Clarify db index docs (#13561) Remove non-functioning video embed (#13557) Masinette integrations elba (#13503) Incorporate Uptime Monitors Into The Crons Management Page (#13507) feat(javascript): Add "Data Collected" (#13527) docs(relay): remove entries that are not scrubbed by default (#13555) flutter: Add note to app start integration (#13479) ref(flutter): move custom zone handling code snippet from init to troubleshooting (#13478) docs(python): add uv option to python install instructions (#13510) add docs for supabase integration (#13545) feat(native): add view hierarchy to develop docs (#13544) feat(autofix): Update autofix images (#13540) Ad alerts and dashboard page to new quickstart guide (#13522) Add data enrichment page to new onboarding guide (#13508) Add first onboarding guide to docs (#13462) (feat) Sentry MCP Documentation (#13524) feat(Capacitor): Migration guides for version 2 (#13022) docs(js): move API-related content from Manual Setup to APIs page (#13327)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Docs for supabase support based on getsentry/sentry-javascript#15436, and adding a coming soon to reference the work here getsentry/sentry-javascript#14611