App

Application Attributes

Describes attributes related to client-side applications (e.g. web apps or mobile apps).

Attributes:

KeyStabilityValue TypeDescriptionExample Values
app.build_idDevelopmentstringUnique identifier for a particular build or compilation of the application.6cff0a7e-cefc-4668-96f5-1273d8b334d0; 9f2b833506aa6973a92fde9733e6271f; my-app-1.0.0-code-123
app.installation.idDevelopmentstringA unique identifier representing the installation of an application on a specific device [1]2ab2916d-a51f-4ac8-80ee-45ac31a28092
app.jank.frame_countDevelopmentintA number of frame renders that experienced jank. [2]9; 42
app.jank.periodDevelopmentdoubleThe time period, in seconds, for which this jank is being reported.1.0; 5.0; 10.24
app.jank.thresholdDevelopmentdoubleThe minimum rendering threshold for this jank, in seconds.0.016; 0.7; 1.024
app.screen.coordinate.xDevelopmentintThe x (horizontal) coordinate of a screen coordinate, in screen pixels.0; 131
app.screen.coordinate.yDevelopmentintThe y (vertical) component of a screen coordinate, in screen pixels.12; 99
app.screen.idDevelopmentstringAn identifier that uniquely differentiates this screen from other screens in the same application. [3]f9bc787d-ff05-48ad-90e1-fca1d46130b3; com.example.app.MainActivity; com.example.shop.ProductDetailFragment; MyApp.ProfileView; MyApp.ProfileViewController
app.screen.nameDevelopmentstringThe name of an application screen. [4]MainActivity; ProductDetailFragment; ProfileView; ProfileViewController
app.widget.idDevelopmentstringAn identifier that uniquely differentiates this widget from other widgets in the same application. [5]f9bc787d-ff05-48ad-90e1-fca1d46130b3; submit_order_1829
app.widget.nameDevelopmentstringThe name of an application widget. [6]submit; attack; Clear Cart

[1] app.installation.id: Its value SHOULD persist across launches of the same application installation, including through application upgrades. It SHOULD change if the application is uninstalled or if all applications of the vendor are uninstalled. Additionally, users might be able to reset this value (e.g. by clearing application data). If an app is installed multiple times on the same device (e.g. in different accounts on Android), each app.installation.id SHOULD have a different value. If multiple OpenTelemetry SDKs are used within the same application, they SHOULD use the same value for app.installation.id. Hardware IDs (e.g. serial number, IMEI, MAC address) MUST NOT be used as the app.installation.id.

For iOS, this value SHOULD be equal to the vendor identifier.

For Android, examples of app.installation.id implementations include:

More information about Android identifier best practices can be found in the Android user data IDs guide.

[2] app.jank.frame_count: Depending on platform limitations, the value provided MAY be approximation.

[3] app.screen.id: A screen represents only the part of the device display drawn by the app. It typically contains multiple widgets or UI components and is larger in scope than individual widgets. Multiple screens can coexist on the same display simultaneously (e.g., split view on tablets).

[4] app.screen.name: A screen represents only the part of the device display drawn by the app. It typically contains multiple widgets or UI components and is larger in scope than individual widgets. Multiple screens can coexist on the same display simultaneously (e.g., split view on tablets).

[5] app.widget.id: A widget is an application component, typically an on-screen visual GUI element.

[6] app.widget.name: A widget is an application component, typically an on-screen visual GUI element.