Skip to content

Commit 4f0f30f

Browse files
committed
pr feedback
1 parent 9f633bd commit 4f0f30f

File tree

3 files changed

+35
-10
lines changed

3 files changed

+35
-10
lines changed

articles/healthcare-apis/deidentification/monitor-deid-reference.md renamed to articles/healthcare-apis/deidentification/monitor-deidentification-service-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.subservice: deidentification-service
1313
# Azure Health Data Services de-identification service (preview) monitoring data reference
1414
[!INCLUDE [horz-monitor-ref-intro](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-ref-intro.md)]
1515

16-
See [Monitor the de-identification service (preview)](monitor-deid.md) for details on the data you can collect for the de-identification service and how to use it.
16+
See [Monitor the de-identification service (preview)](monitor-deidentification-service.md) for details on the data you can collect for the de-identification service and how to use it.
1717

1818
[!INCLUDE [horz-monitor-ref-resource-logs](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-ref-resource-logs.md)]
1919

@@ -31,5 +31,5 @@ Microsoft.HealthDataAIServices/deidServices
3131

3232
## Related content
3333

34-
- See [Monitor the Azure Health Data Services de-identification service](monitor-deid.md) for a description of monitoring the Azure Health Data Services de-identification service (preview).
34+
- See [Monitor the Azure Health Data Services de-identification service](monitor-deidentification-service.md) for a description of monitoring the Azure Health Data Services de-identification service (preview).
3535
- See [Monitor Azure resources with Azure Monitor](/azure/azure-monitor/essentials/monitor-azure-resource) for details on monitoring Azure resources.

articles/healthcare-apis/deidentification/monitor-deid.md renamed to articles/healthcare-apis/deidentification/monitor-deidentification-service.md

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ ms.subservice: deidentification-service
1414
[!INCLUDE [horz-monitor-intro](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-intro.md)]
1515

1616
[!INCLUDE [horz-monitor-resource-types](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-resource-types.md)]
17-
For more information about the resource types for the de-identification service, see [the de-identification service monitoring data reference](monitor-deid-reference.md).
17+
For more information about the resource types for the de-identification service, see [the de-identification service monitoring data reference](monitor-deidentification-service-reference.md).
1818

1919
[!INCLUDE [horz-monitor-data-storage](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-data-storage.md)]
2020

2121
[!INCLUDE [horz-monitor-no-platform-metrics](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-no-platform-metrics.md)]
2222

2323
[!INCLUDE [horz-monitor-resource-logs](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-resource-logs.md)]
2424

25-
For the available resource log categories, their associated Log Analytics tables, and the log schemas for the de-identification service, see [the de-identification service monitoring data reference](monitor-deid-reference.md#resource-logs).
25+
For the available resource log categories, their associated Log Analytics tables, and the log schemas for the de-identification service, see [the de-identification service monitoring data reference](monitor-deidentification-service-reference.md#resource-logs).
2626

2727
[!INCLUDE [horz-monitor-activity-log](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-activity-log.md)]
2828

@@ -32,23 +32,38 @@ For the available resource log categories, their associated Log Analytics tables
3232

3333
[!INCLUDE [horz-monitor-kusto-queries](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-kusto-queries.md)]
3434

35-
<!-- REQUIRED. Add sample Kusto queries for your service here. -->
35+
- To list the 10 most common operations performed on your resource over the last three days:
36+
37+
```kusto
38+
AHDSDeidAuditLogs
39+
| where TimeGenerated > ago(3d)
40+
| summarize count() by OperationName
41+
| top 10 by count_ desc
42+
```
43+
44+
- To list recent unauthenticated requests:
45+
46+
```kusto
47+
AHDSDeidAuditLogs
48+
| where TimeGenerated > ago(3d) and StatusCode == 401
49+
| top 10 by count_ desc
50+
```
3651
3752
[!INCLUDE [horz-monitor-alerts](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-alerts.md)]
3853
39-
### [TODO-replace-with-service-name] alert rules
54+
### De-identification service (preview) alert rules
4055
41-
The following table lists some suggested alert rules for [TODO-replace-with-service-name]. These alerts are just examples. You can set alerts for any metric, log entry, or activity log entry listed in the [de-identification service monitoring data reference](monitor-deid-reference.md).
56+
The following table lists some suggested alert rules for the de-identification service (preview). These alerts are just examples. You can set alerts for any metric, log entry, or activity log entry listed in the [de-identification service monitoring data reference](monitor-deidentification-service-reference.md).
4257
4358
| Alert type | Condition | Description |
4459
|:---|:---|:---|
45-
| | | |
46-
| | | |
60+
| Log | AHDSDeidAuditLogs<br>\| where StatusCode == 429 | De-identification service is throttled. |
61+
| Log | AHDSDeidAuditLogs<br>\| where StatusCode >= 500 | De-identification service is failing. |
4762
4863
<!-- ### Advisor recommendations -->
4964
[!INCLUDE [horz-monitor-advisor-recommendations](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-advisor-recommendations.md)]
5065
5166
## Related content
5267
53-
- See [the de-identification service monitoring data reference](monitor-deid-reference.md) for a reference of the metrics, logs, and other important values created for the de-identification service.
68+
- See [the de-identification service monitoring data reference](monitor-deidentification-service-reference.md) for a reference of the metrics, logs, and other important values created for the de-identification service.
5469
- See [Monitoring Azure resources with Azure Monitor](/azure/azure-monitor/essentials/monitor-azure-resource) for general details on monitoring Azure resources.

articles/healthcare-apis/deidentification/toc.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,16 @@ items:
2222
href: managed-identities.md
2323
- name: Use Azure role-based access control
2424
href: manage-access-rbac.md
25+
- name: Concepts
26+
expanded: true
27+
items:
28+
- name: Monitor the de-identification service
29+
href: monitor-deidentification-service.md
2530
- name: Reference
31+
expanded: true
2632
items:
33+
- name: REST API
34+
href: /rest/api/healthdata
2735
- name: .NET SDK
2836
href: /dotnet/api/overview/azure/healthdeidentification
2937
- name: Python SDK
@@ -32,3 +40,5 @@ items:
3240
href: /java/api/overview/azure/health-deidentification
3341
- name: JavaScript SDK
3442
href: /javascript/api/overview/azure/health-deidentification
43+
- name: De-identification service monitoring data reference
44+
href: monitor-deidentification-service-reference.md

0 commit comments

Comments
 (0)