Skip to content

Commit 9a783b4

Browse files
committed
edit pass: app-articles-batch-21
1 parent 87416dd commit 9a783b4

File tree

4 files changed

+138
-135
lines changed

4 files changed

+138
-135
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Data collected by Application Insights models this typical application execution
1818

1919
![Diagram that shows an Application Insights telemetry data model.](./media/data-model-complete/application-insights-data-model.png)
2020

21-
The following types of telemetry are used to monitor the execution of your app. Three types are automatically collected by the Application Insights SDK from the web application framework:
21+
The following types of telemetry are used to monitor the execution of your app. The Application Insights SDK from the web application framework automatically collects these three types:
2222

2323
* [Request](#request): Generated to log a request received by your app. For example, the Application Insights web SDK automatically generates a Request telemetry item for each HTTP request that your web app receives.
2424

@@ -92,7 +92,7 @@ The response code is the result of a request execution. It's the HTTP status cod
9292

9393
### Success
9494

95-
Success indicates whether a call was successful or unsuccessful. This field is required. When a request isn't set explicitly to `false`, it's considered to be successful. Set this value to `false` if the operation was interrupted by an exception or a returned error result code.
95+
Success indicates whether a call was successful or unsuccessful. This field is required. When a request isn't set explicitly to `false`, it's considered to be successful. If an exception or returned error result code interrupted the operation, set this value to `false`.
9696

9797
For web applications, Application Insights defines a request as successful when the response code is less than `400` or equal to `401`. However, there are cases when this default mapping doesn't match the semantics of the application.
9898

@@ -291,7 +291,7 @@ Modern browsers expose measurements for page load actions with the [Performance
291291
* **Client <--> Web Server**: Client sends request payload, waits for the server to execute the request, and receives the first response packet.
292292
* **Client <--Web Server**: Client receives the rest of the response payload bytes from the web server.
293293
* **Client**: Client now has full response payload and has to render contents into the browser and load the DOM.
294-
294+
295295
* `browserTimings/networkDuration` = #1 + #2
296296
* `browserTimings/sendDuration` = #3
297297
* `browserTimings/receiveDuration` = #4
@@ -329,7 +329,7 @@ Originally, this field was used to indicate the type of the device the user of t
329329

330330
### Operation ID
331331

332-
This field is the unique identifier of the root operation. This identifier allows grouping telemetry across multiple components. For more information, see [Telemetry correlation](./correlation.md). The operation ID is created by either a request or a page view. All other telemetry sets this field to the value for the containing request or page view.
332+
This field is the unique identifier of the root operation. This identifier allows grouping telemetry across multiple components. For more information, see [Telemetry correlation](./correlation.md). Either a request or a page view creates the operation ID. All other telemetry sets this field to the value for the containing request or page view.
333333

334334
**Maximum length:** 128
335335

@@ -341,7 +341,7 @@ This field is the unique identifier of the telemetry item's immediate parent. Fo
341341

342342
### Operation name
343343

344-
This field is the name (group) of the operation. The operation name is created by either a request or a page view. All other telemetry items set this field to the value for the containing request or page view. The operation name is used for finding all the telemetry items for a group of operations (for example, `GET Home/Index`). This context property is used to answer questions like What are the typical exceptions thrown on this page?
344+
This field is the name (group) of the operation. Either a request or a page view creates the operation name. All other telemetry items set this field to the value for the containing request or page view. The operation name is used for finding all the telemetry items for a group of operations (for example, `GET Home/Index`). This context property is used to answer questions like What are the typical exceptions thrown on this page?
345345

346346
**Maximum length:** 1,024
347347

@@ -384,7 +384,7 @@ User IDs can be cross-referenced with session IDs to provide unique telemetry di
384384

385385
### Account ID
386386

387-
The account ID, in multi-tenant applications, is the tenant account ID or name that the user is acting with. It's used for more user segmentation when a user ID and an authenticated user ID aren't sufficient. Examples might be a subscription ID for the Azure portal or the blog name for a blogging platform.
387+
The account ID, in multitenant applications, is the tenant account ID or name that the user is acting with. It's used for more user segmentation when a user ID and an authenticated user ID aren't sufficient. Examples might be a subscription ID for the Azure portal or the blog name for a blogging platform.
388388

389389
**Maximum length:** 1,024
390390

0 commit comments

Comments
 (0)