CloudWatch RUM vs. Ad blockers : How to fix possible missing telemetry
A few weeks ago, I was reviewing the Amazon CloudWatch RUM dashboard for a web application I...
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3880056) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Jérôme GUYON for AWS Community Builders Posted on Apr 30 CloudWatch RUM vs. Ad blockers : How to fix possible missing telemetry #analytics #aws #monitoring #webdev A few weeks ago, I was reviewing the Amazon CloudWatch RUM dashboard for a web application I maintain. Page views were suspiciously low. After some digging, I opened the browser's DevTools on my machine and there it was: uBlock Origin was quietly blocking every request to dataplane.rum.eu-west-1.amazonaws.com.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).