Hello everyone,
I’m trying to track all the resources loaded on a page — specifically, the ones that appear in the browserResourceRecord index. Right now, I only see a portion of the data, and the captured entries seem completely random.
My final goal is to correlate a browser_record session (via cguid) with its corresponding entries in browserResourceRecord.
Currently, I’m able to do the reverse: occasionally, a page is randomly captured in browserResourceRecord, and I can trace it back to the session it belongs to. But I can’t do the opposite — which is what I actually need.
I’ve tried various things in the RUM script. My most recent changes involved setting the following capture parameters:
config.resTiming = {
sampler: "TopN",
maxNum: 500,
bufSize: 500,
clearResTimingOnBeaconSend: true
};
Unfortunately, this hasn’t worked either.
I also suspected that resources only appear when they violate the Resource Performance thresholds, so I configured extremely low thresholds — but this didn’t help either.
What I’d really like is to have access to something similar to a HAR file — with all the resource information — and make it available via Analytics, so I can download and compare it.
Unfortunately, the session waterfall isn't downloadable — which is a major limitation.
Thank you,
Marco.