We have an EPiServer website, which has Application Insights activated. This creates two cookies ai_user
and ai_session
. We would like to disable these cookies.
Based on information I found we can set the following:
isCookieUseDisabled - Default false. If true, the SDK will not store or read any data from cookies. isStorageUseDisabled - If true, the SDK will not store or read any data from local and session storage. Default is false. enableSessionStorageBuffer - Default true. If true, the buffer with all unsent telemetry is stored in session storage. The buffer is restored on page load
I was told this needs to go in: ApplicationInsights.config
But the syntax appears to be quite different from that file.
Do these settings need to go in the JS file instead? (https://az416426.vo.msecnd.net/scripts/a/ai.0.js)
If yes, where in Azure Monitor do I find the link to this file?