### Description Relevant discord thread: https://discord.com/channels/621778831602221064/1410602434610466836/1410602434610466836 https://develop.sentry.dev/sdk/telemetry/logs/#mobile-desktop-and-native-sdks For mobile, desktop, and native SDKs (Android, Apple, Electron, etc.), the SDKs should attach the following: 1. `os.name`: The name of the operating system. Maps to name in the [Contexts](https://develop.sentry.dev/sdk/data-model/event-payloads/contexts/#os-context) payload. 2. `os.version`: The version of the operating system. Maps to version in the [Contexts](https://develop.sentry.dev/sdk/data-model/event-payloads/contexts/#os-context) payload. 3. `device.brand`: The brand of the device. Maps to brand in the [Contexts](https://develop.sentry.dev/sdk/data-model/event-payloads/contexts/#device-context) payload. 4. `device.model`: The model of the device. Maps to model in the [Contexts](https://develop.sentry.dev/sdk/data-model/event-payloads/contexts/#device-context) payload. 5. `device.family`: The family of the device. Maps to family in the [Contexts](https://develop.sentry.dev/sdk/data-model/event-payloads/contexts/#device-context) payload. example: ``` { "os.name": "iOS", "os.version": "17.0", "device.brand": "Apple", "device.model": "iPhone 15 Pro Max", "device.family": "iPhone" } ```
Description
Relevant discord thread: https://discord.com/channels/621778831602221064/1410602434610466836/1410602434610466836
https://develop.sentry.dev/sdk/telemetry/logs/#mobile-desktop-and-native-sdks
For mobile, desktop, and native SDKs (Android, Apple, Electron, etc.), the SDKs should attach the following:
os.name: The name of the operating system. Maps to name in the Contexts payload.os.version: The version of the operating system. Maps to version in the Contexts payload.device.brand: The brand of the device. Maps to brand in the Contexts payload.device.model: The model of the device. Maps to model in the Contexts payload.device.family: The family of the device. Maps to family in the Contexts payload.example: