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/healthcare-apis/events/events-faqs.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
---
2
2
title: Frequently asked questions about Events - Azure Health Data Services
3
-
description: This article provides answers to the frequently asked questions about Events.
3
+
description: Learn about the frequently asked questions about Events.
4
4
services: healthcare-apis
5
5
author: msjasteppe
6
6
ms.service: healthcare-apis
7
7
ms.subservice: fhir
8
8
ms.topic: reference
9
-
ms.date: 04/04/2022
9
+
ms.date: 06/16/2022
10
10
ms.author: jasteppe
11
11
---
12
12
@@ -17,11 +17,11 @@ ms.author: jasteppe
17
17
18
18
## Events: The basics
19
19
20
-
###Can I use Events with a different FHIR/DICOM service other than the Azure Health Data Services FHIR/DICOM service?
20
+
## Can I use Events with a different FHIR/DICOM service other than the Azure Health Data Services FHIR/DICOM service?
21
21
22
22
No. The Azure Health Data Services Events feature only currently supports the Azure Health Data Services FHIR and DICOM services.
23
23
24
-
###What FHIR resource events does Events support?
24
+
## What FHIR resource events does Events support?
25
25
26
26
Events are generated from the following FHIR service types:
27
27
@@ -33,7 +33,7 @@ Events are generated from the following FHIR service types:
33
33
34
34
For more information about the FHIR service delete types, see [FHIR REST API capabilities for Azure Health Data Services FHIR service](../../healthcare-apis/fhir/fhir-rest-api-capabilities.md).
35
35
36
-
###Does Events support FHIR bundles?
36
+
## Does Events support FHIR bundles?
37
37
38
38
Yes. The Events feature is designed to emit notifications of data changes at the FHIR resource level.
39
39
@@ -46,7 +46,7 @@ Events support these [FHIR bundle types](http://hl7.org/fhir/R4/valueset-bundle-
46
46
> [!NOTE]
47
47
> Events are not sent in the sequence of the data operations in the FHIR bundle.
48
48
49
-
###What DICOM image events does Events support?
49
+
## What DICOM image events does Events support?
50
50
51
51
Events are generated from the following DICOM service types:
52
52
@@ -56,43 +56,43 @@ Events are generated from the following DICOM service types:
56
56
57
57
-**DicomImageUpdated** - The event emitted after a DICOM image gets updated successfully.
58
58
59
-
###What is the payload of an Events message?
59
+
## What is the payload of an Events message?
60
60
61
61
For a detailed description of the Events message structure and both required and nonrequired elements, see [Events troubleshooting guide](events-troubleshooting-guide.md).
62
62
63
-
###What is the throughput for the Events messages?
63
+
## What is the throughput for the Events messages?
64
64
65
65
The throughput of the FHIR or DICOM service and the Event Grid govern the throughput of FHIR and DICOM events. When a request made to the FHIR service is successful, it returns a 2xx HTTP status code. It also generates a FHIR resource or DICOM image changing event. The current limitation is 5,000 events/second per a workspace for all FHIR or DICOM service instances in it.
66
66
67
-
###How am I charged for using Events?
67
+
## How am I charged for using Events?
68
68
69
69
There are no extra charges for using [Azure Health Data Services Events](https://azure.microsoft.com/pricing/details/health-data-services/). However, applicable charges for the [Event Grid](https://azure.microsoft.com/pricing/details/event-grid/) are assessed against your Azure subscription.
70
70
71
-
###How do I subscribe to multiple FHIR and/or DICOM services in the same workspace separately?
71
+
## How do I subscribe to multiple FHIR and/or DICOM services in the same workspace separately?
72
72
73
73
You can use the Event Grid filtering feature. There are unique identifiers in the event message payload to differentiate different accounts and workspaces. You can find a global unique identifier for workspace in the `source` field, which is the Azure Resource ID. You can locate the unique FHIR account name in that workspace in the `data.resourceFhirAccount` field. You can locate the unique DICOM account name in that workspace in the `data.serviceHostName` field. When you create a subscription, you can use the filtering operators to select the events you want to get in that subscription.
74
74
75
75
:::image type="content" source="media\event-grid\event-grid-filters.png" alt-text="Screenshot of the Event Grid filters tab." lightbox="media\event-grid\event-grid-filters.png":::
76
76
77
-
###Can I use the same subscriber for multiple workspaces, FHIR accounts, or DICOM accounts?
77
+
## Can I use the same subscriber for multiple workspaces, FHIR accounts, or DICOM accounts?
78
78
79
79
Yes. We recommend that you use different subscribers for each individual FHIR or DICOM account to process in isolated scopes.
80
80
81
-
###Is Event Grid compatible with HIPAA and HITRUST compliance obligations?
81
+
## Is Event Grid compatible with HIPAA and HITRUST compliance obligations?
82
82
83
83
Yes. Event Grid supports customer's Health Insurance Portability and Accountability Act (HIPAA) and Health Information Trust Alliance (HITRUST) obligations. For more information, see [Microsoft Azure Compliance Offerings](https://azure.microsoft.com/resources/microsoft-azure-compliance-offerings/).
84
84
85
-
###What is the expected time to receive an Events message?
85
+
## What is the expected time to receive an Events message?
86
86
87
87
On average, you should receive your event message within one second after a successful HTTP request. 99.99% of the event messages should be delivered within five seconds unless the limitation of either the FHIR service, DICOM service, or [Event Grid](../../event-grid/quotas-limits.md) has been met.
88
88
89
-
###Is it possible to receive duplicate Events messages?
89
+
## Is it possible to receive duplicate Events messages?
90
90
91
91
Yes. The Event Grid guarantees at least one Events message delivery with its push mode. There may be chances that the event delivery request returns with a transient failure status code for random reasons. In this situation, the Event Grid considers that as a delivery failure and resends the Events message. For more information, see [Azure Event Grid delivery and retry](../../event-grid/delivery-and-retry.md).
92
92
93
93
Generally, we recommend that developers ensure idempotency for the event subscriber. The event ID or the combination of all fields in the `data` property of the message content are unique per each event. The developer can rely on them to deduplicate.
94
94
95
-
###More frequently asked questions
95
+
## More frequently asked questions
96
96
97
97
[FAQs about the Azure Health Data Services](../healthcare-apis-faqs.md)
0 commit comments