Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ When deciding where new logic should live, default to server-side (Relay). Proce

Put logic in the SDK only when it genuinely needs to run client-side:

- It **MUST** run before data leaves the customer's application (e.g., user-controlled filtering like `before_send_*`)
- It needs to run before data leaves the customer's application (e.g., user-controlled filtering like `before_send_*`)
- It requires access to platform-specific APIs
- It's strictly latency-sensitive
- It **MUST** function in offline scenarios
- It needs to function in offline scenarios

If data has already been collected, transform it in Relay.

Expand Down
Loading