docs(sdk): Add runtime
to SDK interface
#13190
Closed
+34
−0
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.
Problem
Meta-Frameworks include a frontend as well as backend environment. They have the problem that the execution environment (frontend/backend) of their errors in Sentry are hard to distinguish.
As all of their issues come into the same projects you don't know if this is a frontend or backend problem.
An issue for this was created here: Discern Client vs Server Errors
Solution
The idea is to include the platform to the SDK payload. The platform is a pre-defined set of allowed strings:
The SDK payload currently includes things like name, version, integrations etc (docs here).
Why is this information not added to the event context?
It can be added to the event context and in most cases, there is something added already (e.g.
event.context.runtime.name
). However, this runtime is added to all SDKs, not only the Meta-Frameworks.Other naming suggestions
environment
platform
Further Reading
Develop Docs: SDK Interface
Related PR: getsentry/sentry#88312