Skip to content

Commit 64e99f9

Browse files
committed
Fixing blocking issues
1 parent c331793 commit 64e99f9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/azure-monitor/app/data-model-complete.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -286,11 +286,11 @@ PageView telemetry (in [Application Insights](./app-insights-overview.md)) is lo
286286

287287
Modern browsers expose measurements for page load actions with the [Performance API](https://developer.mozilla.org/en-US/docs/Web/API/Performance_API). Application Insights simplifies these measurements by consolidating related timings into [standard browser metrics](../essentials/metrics-supported.md#microsoftinsightscomponents) as defined by these processing time definitions:
288288

289-
1. Client <--> DNS: Client reaches out to DNS to resolve website hostname, DNS responds with IP address.
290-
1. Client <--> Web Server: Client creates TCP then TLS handshakes with web server.
291-
1. Client <--> Web Server: Client sends request payload, waits for server to execute request, and receives first response packet.
292-
1. Client <--Web Server: Client receives the rest of the response payload bytes from the web server.
293-
1. Client: Client now has full response payload and has to render contents into browser and load the DOM.
289+
* Client <--> DNS: Client reaches out to DNS to resolve website hostname, DNS responds with IP address.
290+
* Client <--> Web Server: Client creates TCP then TLS handshakes with web server.
291+
* Client <--> Web Server: Client sends request payload, waits for server to execute request, and receives first response packet.
292+
* Client <--Web Server: Client receives the rest of the response payload bytes from the web server.
293+
* Client: Client now has full response payload and has to render contents into browser and load the DOM.
294294

295295
* `browserTimings/networkDuration` = #1 + #2
296296
* `browserTimings/sendDuration` = #3
@@ -303,7 +303,7 @@ Modern browsers expose measurements for page load actions with the [Performance
303303
* If it’s not, then the *deprecated* [`PerformanceTiming`](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming) interface is used and the delta between [`NavigationStart`](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/navigationStart) and [`LoadEventEnd`](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/loadEventEnd) is calculated.
304304
* The developer specifies a duration value when logging custom PageView events using the [trackPageView API call](./api-custom-events-metrics.md#page-views).
305305

306-
![Screenshot of the Metrics page in Application Insights showing graphic displays of metrics data for a web application.](./media/javascript/page-view-load-time.png)
306+
:::image type="content" source="./media/javascript/page-view-load-time.png" alt-text="Screenshot of the Metrics page in Application Insights showing graphic displays of metrics data for a web application." lightbox="./media/javascript/page-view-load-time.png" border="false":::
307307

308308
## Context
309309

0 commit comments

Comments
 (0)