When implementing BRUM (via HTML/JS code injection into the code of an application) we can set configuration options for the apiKey, spa2, etc. However if there is a need to pass in additional meta data, that could be retrieved when running a query: ...
We inject the adrum script into our application pointing to the CDN version of "adrum-latest.js". This of course loads the latest version of the script from the CDN. We noted that as of version 20.8.0.3230 (up to the latest: https://cdn.appdynamics.c...
Sadly I was a victim of my own code. I had some typos in my code sample, specifically around "sessionStorage.getItem()" (In my haste I was missing the "Item") and thus it all fell down. The following code works fine: window['adrum-config'] = {
...
We found that the solution was that these 2 settings were required as part of the configuration to avoid the this.thenCore error: config.spa = {"spa2": true};
config.isZonePromise = true; With these both applied, the error went away, and the pages lo...