-
-
Notifications
You must be signed in to change notification settings - Fork 213
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
Investigate Blazor+MAUI hybrid apps #1954
Comments
It may be required to sign up to the |
From what we've observed, some JS errors never make it to the .NET side so they have to be logged by the JS SDK. On the other hand, this is also true for many .NET errors; they never make it to the JS console (or if they do, they lack metadata). So you basically need both SDKs. The main issue is keeping scope in sync via asynchronous IPCs. I think for the most part you only need to push metadata to the JS side, not backwards; maybe even a pull approach could work before sending events to Sentry? Some de-duplication mechanism is also needed if there are 2 SDKs since some events seem to make it through to both ends of the logging pipeline. Maybe just push events directly from the JS SDK to the .NET SDK and have the .NET side handle the messaging and de-duplication? |
Any info about this? |
We didn't make progress on this yet. But would be nice to add support. |
We started a new blazor hybrid project and are still exploring options so can't really tell how it behaves |
I recommend adding |
Problem Statement
Looks like MAUI Blazor hybrid apps are getting popular.
We should see if we can support it OOTB with the Sentry .NET MAUI SDK.
Solution Brainstorm
It may be helpful to bundle the Sentry JavaScript SDK, not sure.
The text was updated successfully, but these errors were encountered: