RUM-17207 Add local_cache_hit field to resource event schema#412
Open
barboraplasovska wants to merge 2 commits into
Open
RUM-17207 Add local_cache_hit field to resource event schema#412barboraplasovska wants to merge 2 commits into
barboraplasovska wants to merge 2 commits into
Conversation
barboraplasovska
marked this pull request as ready for review
July 16, 2026 09:24
simaoseica-dd
approved these changes
Jul 16, 2026
| "description": "Network protocol used to fetch the resource (e.g., 'http/1.1', 'h2')", | ||
| "readOnly": true | ||
| }, | ||
| "delivery_type": { |
There was a problem hiding this comment.
any reason why we can't reuse @resource.delivery_type? browsers currently indicate local cache through this and is not platform specific.
cc @qsellem as author of the product brief
5 tasks
mormubis
reviewed
Jul 20, 2026
| "enum": ["cache", "navigational-prefetch", "other"], | ||
| "readOnly": true | ||
| }, | ||
| "local_cache_hit": { |
Contributor
There was a problem hiding this comment.
Edit: removed my comment, I just saw @samcolmanetti comment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What and why?
Adds an optional, read-only
local_cache_hitboolean field to the Resource so mobile SDKs can report when a resource was served from the device's local cache. The RUM backend has acceptedresource.local_cache_hit == trueas an input signal since 15/06 (to setcache_reason = local_cache), but no SDK can send it yet since the field doesn't exist in the schema.