Skip to content

Commit 3f2f35d

Browse files
prmerger-automator[bot]baanders
authored andcommitted
Merge pull request #252726 from AaronMaxwell/aaronmax-custom-measurement-numeric-values-2
Numeric values requirement for custom measurements
2 parents f249d20 + 2eb3514 commit 3f2f35d

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manager: carmonm
77
ms.workload: TBD
88
ms.tgt_pltfrm: ibiza
99
ms.topic: conceptual
10-
ms.date: 06/23/2023
10+
ms.date: 09/25/2023
1111
ms.reviewer: mmcc
1212
---
1313
# Application Insights telemetry data model
@@ -421,6 +421,10 @@ PageView Telemetry includes URL and you could parse the UTM parameter using a re
421421

422422
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.
423423

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+
424428
## Next steps
425429

426430
Learn how to use the [Application Insights API for custom events and metrics](./api-custom-events-metrics.md), including:

articles/digital-twins/how-to-use-3d-scenes-studio.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,21 @@ Azure Digital Twins [3D Scenes Studio (preview)](https://explorer.digitaltwins.a
2222

2323
## Prerequisites
2424

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+
2627
* An Azure Digital Twins instance. For instructions, see [Set up an instance and authentication](how-to-set-up-instance-cli.md).
2728
* 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).
2829
* Take note of the *host name* of your instance to use later.
2930
* An Azure storage account. For instructions, see [Create a storage account](../storage/common/storage-account-create.md?tabs=azure-portal).
3031
* Take note of the *URL* of your storage account to use later.
3132
* A private container in the storage account. For instructions, see [Create a container](../storage/blobs/storage-quickstart-blobs-portal.md#create-a-container).
3233
* 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+
3440
* Configure CORS for your storage account (see details in the following sub-section).
3541

3642
### Configure CORS

includes/application-insights-data-model-measurements.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
ms.service: application-insights
33
ms.topic: include
4-
ms.date: 11/09/2018
4+
ms.date: 09/25/2023
55
---
66
**Collection of custom measurements:** Use this collection to report named measurements associated with the telemetry item. Typical use cases are:
77

@@ -18,6 +18,7 @@ customEvents
1818
```
1919

2020
> [!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.
2223
2324
**Maximum key length**: 150

0 commit comments

Comments
 (0)