Skip to content
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

Replace references to iOS classes with correct Android equivalents. #1012

Merged
merged 2 commits into from
Aug 12, 2022
Merged
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
4 changes: 2 additions & 2 deletions docs/mobile_data_collected.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ There are additional [metrics and attributes that are specific to a given event
| Event Type | Retention | Description |
|----------------|-----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Session | 30 days | A session represents a real user journey on your mobile application. It begins when the user launches the application, and the session remains live as long as the user stays active. During the user journey, all RUM events generated as part of the session will share the same `session.id` attribute. **Note:** The session resets after 15 minutes of inactivity. If the application is killed by the OS, you can reset the session while the application is in the background. |
| View | 30 days | A view represents a unique screen (or screen segment) on your mobile application. A view starts and stops when the `viewDidAppear(animated:)` and `viewDidDisappear(animated:)` callbacks on the `UIViewController` class are notified. Individual `ViewControllers` are classified as distinct views. While a user stays on a view, RUM event attributes (Errors, Resources, Actions) get attached to the view with a unique `view.id`. |
| View | 30 days | A view represents a unique screen (or screen segment) on your mobile application. A view starts and stops when the `onActivityResumed` and `onActivityPaused` callbacks are called through the `ActivityLifecycleCallbacks` interface. Each occurrence is classified as a distinct view. While a user stays on a view, RUM event attributes (Errors, Resources, Actions) get attached to the view with a unique `view.id`. |
| Resource | 15 days | A resource represents network requests to first-party hosts, APIs, and third-party providers in your mobile application. All requests generated during a user session are attached to the view with a unique `resource.id`. |
| Error | 30 days | An error represents an exception or crash emitted by the mobile application attached to the view it is generated in. |
| Action | 30 days | An action represents user activity in your mobile application (application launch, tap, swipe, back etc). Each action is attached with a unique `action.id` attached to the view it gets generated in. |
Expand Down Expand Up @@ -136,7 +136,7 @@ RUM action, error, resource, and long task events contain information about the
| Attribute name | Type | Description |
|--------------------------------|--------|----------------------------------------------------------------------------------------------------------------|
| `view.id` | string | Unique ID of the initial view corresponding to the event. |
| `view.url` | string | URL of the `UIViewController` class corresponding to the event. |
| `view.url` | string | Canonical name of the class corresponding to the event. |
| `view.name` | string | Customizable name of the view corresponding to the event. |

### Resource metrics
Expand Down