From b0adbbc0a065afce2335795b6f68d478d0f0d334 Mon Sep 17 00:00:00 2001 From: "melissa.amos" Date: Mon, 3 Aug 2026 09:23:47 -0700 Subject: [PATCH] [DOCS-15165] Add view.memory_average/view.memory_max to Android Data Collected docs Document two existing Android RUM View attributes that had no public definitions. --- layouts/shortcodes/mdoc/en/sdk/data_collected/android.mdoc.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/layouts/shortcodes/mdoc/en/sdk/data_collected/android.mdoc.md b/layouts/shortcodes/mdoc/en/sdk/data_collected/android.mdoc.md index 70a25d7d489..58e89259f86 100644 --- a/layouts/shortcodes/mdoc/en/sdk/data_collected/android.mdoc.md +++ b/layouts/shortcodes/mdoc/en/sdk/data_collected/android.mdoc.md @@ -150,6 +150,8 @@ RUM action, error, resource, and long task events contain information about the | `view.is_active` | Boolean | Indicates whether the view corresponding to this event is considered active. | | `view.loading_time` | number (ns) | Time it took for the view to load, set by the `addViewLoadingTime(override:)` call. | | `view.long_task.count` | number | Count of all long tasks collected for this view. | +| `view.memory_average` | number (bytes) | Average amount of resident memory (native and JVM/ART heap) used while this view was foregrounded. | +| `view.memory_max` | number (bytes) | Peak amount of resident memory (native and JVM/ART heap) used while this view was foregrounded. | | `view.name` | string | Customizable name of the view corresponding to the event. | | `view.network_settled_time` | number (ns) | Time it took for a view to be fully loaded with all relevant network calls initiated at the start of the view. | | `view.resource.count` | number | Count of all resources collected for this view. |