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
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ manager: carmonm
7
7
ms.workload: TBD
8
8
ms.tgt_pltfrm: ibiza
9
9
ms.topic: conceptual
10
-
ms.date: 06/23/2023
10
+
ms.date: 09/25/2023
11
11
ms.reviewer: mmcc
12
12
---
13
13
# Application Insights telemetry data model
@@ -421,6 +421,10 @@ PageView Telemetry includes URL and you could parse the UTM parameter using a re
421
421
422
422
Occasionally, this data might be missing or inaccurate if the user or enterprise disables sending User Agent in browser settings. The [UA Parser regexes](https://github.com/ua-parser/uap-core/blob/master/regexes.yaml) might not include all device information. Or Application Insights might not have adopted the latest updates.
423
423
424
+
### Why would a custom measurement succeed without error but the log doesn't show up?
425
+
426
+
This can occur if you're using string values. Only numeric values work with custom measurements.
427
+
424
428
## Next steps
425
429
426
430
Learn how to use the [Application Insights API for custom events and metrics](./api-custom-events-metrics.md), including:
Copy file name to clipboardExpand all lines: articles/digital-twins/how-to-use-3d-scenes-studio.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,15 +22,21 @@ Azure Digital Twins [3D Scenes Studio (preview)](https://explorer.digitaltwins.a
22
22
23
23
## Prerequisites
24
24
25
-
To use 3D Scenes Studio, you'll need the following resources:
25
+
To use 3D Scenes Studio, you'll need the following resources.
26
+
26
27
* An Azure Digital Twins instance. For instructions, see [Set up an instance and authentication](how-to-set-up-instance-cli.md).
27
28
* Obtain *Azure Digital Twins Data Owner* or *Azure Digital Twins Data Reader* access to the instance. For instructions, see [Set up user access permissions](how-to-set-up-instance-cli.md#set-up-user-access-permissions).
28
29
* Take note of the *host name* of your instance to use later.
29
30
* An Azure storage account. For instructions, see [Create a storage account](../storage/common/storage-account-create.md?tabs=azure-portal).
30
31
* Take note of the *URL* of your storage account to use later.
31
32
* A private container in the storage account. For instructions, see [Create a container](../storage/blobs/storage-quickstart-blobs-portal.md#create-a-container).
32
33
* Take note of the *name* of your storage container to use later.
33
-
**Storage Blob Data Owner* or *Storage Blob Data Contributor* access to your storage resources. You can grant required roles at either the storage account level or the container level. For instructions and more information about permissions to Azure storage, see [Assign an Azure role](../storage/blobs/assign-azure-role-data-access.md?tabs=portal#assign-an-azure-role).
34
+
* Permissions for your storage resources, including:
35
+
* At least *Reader* control plane access
36
+
* A data access role of *Storage Blob Data Owner* or *Storage Blob Data Contributor*
37
+
38
+
You can grant required roles at either the storage account level or the container level. For instructions and more information about permissions to Azure storage, see [Assign an Azure role](../storage/blobs/assign-azure-role-data-access.md?tabs=portal#assign-an-azure-role).
39
+
34
40
* Configure CORS for your storage account (see details in the following sub-section).
Copy file name to clipboardExpand all lines: includes/application-insights-data-model-measurements.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
ms.service: application-insights
3
3
ms.topic: include
4
-
ms.date: 11/09/2018
4
+
ms.date: 09/25/2023
5
5
---
6
6
**Collection of custom measurements:** Use this collection to report named measurements associated with the telemetry item. Typical use cases are:
7
7
@@ -18,6 +18,7 @@ customEvents
18
18
```
19
19
20
20
> [!NOTE]
21
-
> Custom measurements are associated with the telemetry item they belong to. They're subject to sampling with the telemetry item that contains those measurements. To track a measurement that has a value independent from other telemetry types, use [metric telemetry](../articles/azure-monitor/app/api-custom-events-metrics.md).
21
+
> - Custom measurements are associated with the telemetry item they belong to. They're subject to sampling with the telemetry item that contains those measurements. To track a measurement that has a value independent from other telemetry types, use [metric telemetry](../articles/azure-monitor/app/api-custom-events-metrics.md).
22
+
> - Don't use string values for custom measurements. Only numeric values are supported.
0 commit comments