I have injected adrum.js into my Front End page by modifying Apache following the official guideline. <Location "/">
AddOutputFilterByType INFLATE;SUBSTITUTE;DEFLATE text/html
Substitute "s#<head>#<head><script>window['adrum-start-time'] = new Date().getTime();</script><script>(function(config){config.appKey='${APPD_BROWSER_APP_KEY}';})(window['adrum-config'] || (window['adrum-config'] = {}));</script><script src='https://cdn.appdynamics.com/adrum/adrum-latest.js'></script>#inq"
</Location> And I can see the adrum-latest.js is successfully replace <head> label with the contents as expected, when I check page's element in browser's development mode. After that I can see some data traffic like calling col.eum-appdynamics.com with /eumcollector/beacons/browser/v1/MY_CORRECT_APP_KEY/adrum And there is always a 200 OK response with no response body. But I can't see anything in my app's dashboard in AppDynamic's controller. I mean no data at all, every column is 0. And I also try changes this app's APP_KEY into another working perfectly normal app's APP_KEY. But still, no data feeds to the 'working perfectly normal app'. Can anyone gives me a hint that where should I begin troubleshooting this problem?
... View more