Skip to content

Commit c5089c2

Browse files
authored
public repo edits
1 parent 2d1482c commit c5089c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-monitor/app/data-retention-privacy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,9 @@ The folder prefix `appInsights-node` can be overridden by changing the runtime v
170170

171171
### JavaScript (Browser)
172172

173-
[HTML5 Session Storage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage) is used for persisting data. Two separate buffers are used, `AI_buffer` and `AI_sent_buffer`. Telemetry which is batched and waiting to be sent is stored in `AI_buffer`. Telemetry which has just been sent is placed in `AI_sent_buffer` until the ingestion server responds that it was received successfully, upon which it is removed from all buffers. On transient failures (e.g. user loses network connectivity), telemetry remains in `AI_buffer` until it is successfully received or when the ingestion server responds that the telemetry is invalid (bad schema, too old, etc).
173+
[HTML5 Session Storage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage) is used to persist data. Two separate buffers are used: `AI_buffer` and `AI_sent_buffer`. Telemetry that is batched and waiting to be sent is stored in `AI_buffer`. Telemetry that was just sent is placed in `AI_sent_buffer` until the ingestion server responds that it was successfully received. When telemetry is successfully received, it's removed from all buffers. On transient failures (for example, a user loses network connectivity), telemetry remains in `AI_buffer` until it is successfully received or the ingestion server responds that the telemetry is invalid (bad schema or too old, for example).
174174

175-
It can be disabled by setting [`enableSessionStorageBuffer`](https://github.com/microsoft/ApplicationInsights-JS/blob/17ef50442f73fd02a758fbd74134933d92607ecf/legacy/JavaScript/JavaScriptSDK.Interfaces/IConfig.ts#L31) to `false`. When turned off, a local array will instead be used as the persistence storage. Since the JavaScript SDK runs on a client device, the end-user has access to this storage location via their browser's developer tools.
175+
Telemetry buffers can be disabled by setting [`enableSessionStorageBuffer`](https://github.com/microsoft/ApplicationInsights-JS/blob/17ef50442f73fd02a758fbd74134933d92607ecf/legacy/JavaScript/JavaScriptSDK.Interfaces/IConfig.ts#L31) to `false`. When turned off, a local array is instead used as persistent storage. Because the JavaScript SDK runs on a client device, the user has access to this storage location via their browser's developer tools.
176176

177177
### OpenCensus Python
178178

0 commit comments

Comments
 (0)