You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-monitor/app/data-model-complete.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -286,11 +286,11 @@ PageView telemetry (in [Application Insights](./app-insights-overview.md)) is lo
286
286
287
287
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:
288
288
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.
294
294
295
295
*`browserTimings/networkDuration` = #1 + #2
296
296
*`browserTimings/sendDuration` = #3
@@ -303,7 +303,7 @@ Modern browsers expose measurements for page load actions with the [Performance
303
303
* 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.
304
304
* The developer specifies a duration value when logging custom PageView events using the [trackPageView API call](./api-custom-events-metrics.md#page-views).
305
305
306
-

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":::
0 commit comments