Skip to content

Commit 90d7a8b

Browse files
authored
Merge pull request #303252 from dominicbetts/release-aio-2507-connectors
AIO 2507: Add ADR screenshots
2 parents 3af315a + 422a34a commit 90d7a8b

File tree

8 files changed

+40
-16
lines changed

8 files changed

+40
-16
lines changed

articles/iot-operations/deploy-iot-ops/howto-manage-update-uninstall.md

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,21 +109,39 @@ You can run `az iot ops check` on your cluster to assess health and configuratio
109109

110110
### View Azure Device Registry
111111

112-
<!-- TODO - 2507 Expand this section with more details about the Azure Device Registry. -->
113-
114-
In the Azure portal, you can view the Azure Device Registry, which is a collection of all devices and assets that are connected to your Azure IoT Operations instance.
112+
In the Azure portal, you can view the Azure Device Registry, which is a collection of all the devices and assets that are connected to your Azure IoT Operations instance.
115113

116114
The Azure Device Registry uses _namespaces (preview)_ to organize assets and devices. Each Azure IoT Operations instance uses a single namespace for its assets and devices. Multiple instances can share a single namespace.
117115

118-
<!-- TODO - 2507 Expand this section with more details about the connector template configuration. -->
116+
To view items in the Azure Device Registry in the Azure portal:
117+
118+
1. In the [Azure portal](https://portal.azure.com), search for and select **Azure Device Registry**. The **Overview** page summarizes the number of assets, schema registries and namespaces in your subscription:
119+
120+
:::image type="content" source="media/howto-manage-update-uninstall/azure-device-registry-overview.png" alt-text="Screenshot of Azure Device Registry overview page in the Azure portal." lightbox="media/howto-manage-update-uninstall/azure-device-registry-overview.png":::
121+
122+
1. Use the **Assets** page to view the assets in Azure Device Registry. By default, the **Assets** page shows the assets in all namespaces in your subscription. Use the filters to view a subset of the assets, such as the assets in a specific namespace or resource group:
123+
124+
:::image type="content" source="media/howto-manage-update-uninstall/azure-device-registry-assets.png" alt-text="Screenshot of Azure Device Registry assets page in the Azure portal." lightbox="media/howto-manage-update-uninstall/azure-device-registry-assets.png":::
125+
126+
1. Use the **Schema registries** page to view the schema registries in Azure Device Registry. By default, the **Schema registries** page shows the schema registries in all namespaces in your subscription. Use the filters to view a subset of the schema registries, such as the schema registries in a specific namespace or resource group:
127+
128+
:::image type="content" source="media/howto-manage-update-uninstall/azure-device-registry-schema-registries.png" alt-text="Screenshot of Azure Device Registry schema registries page in the Azure portal." lightbox="media/howto-manage-update-uninstall/azure-device-registry-schema-registries.png":::
129+
130+
1. Use the **Namespaces** page to view the namespaces in Azure Device Registry. By default, the **Namespaces** page shows the namespaces in your subscription. Use the filters to view a subset of the namespaces, such as the namespaces in a specific resource group. From this page, you can create new namespaces, or view the details of existing namespaces:
131+
132+
:::image type="content" source="media/howto-manage-update-uninstall/azure-device-registry-namespaces.png" alt-text="Screenshot of Azure Device Registry namespaces page in the Azure portal." lightbox="media/howto-manage-update-uninstall/azure-device-registry-namespaces.png":::
133+
134+
You can also view the details of an existing namespace in the resource group that includes your Azure IoT Operations instance. For example, the following screenshot shows the **adr-namespace** resource associated with the **aio-131235032** Azure IoT Operations instance:
135+
136+
:::image type="content" source="media/howto-manage-update-uninstall/portal-resources.png" alt-text="Screenshot of Azure portal showing resources in the resource group." lightbox="media/howto-manage-update-uninstall/portal-resources.png":::
137+
138+
The previous screenshot also shows the other resources in Azure Device Registry such as the **IoT Schema Registry**, **IoT Namespace Assets**, and **Devices** in the context of the resource group that contains your Azure IoT Operations instance.
119139

120140
### Configure connector templates
121141

122142
In the Azure portal, you can configure *connector templates* for your Azure IoT Operations instance. Connector templates define the configuration of connectors, such as the connector for OPC UA, that are deployed to your cluster. When you create a connector template, it enables an OT user to create a device that uses the connector type in the operations experience web UI.
123143

124-
### Configure discovery handlers
125-
126-
In the Azure portal, you can configure *discovery handlers* for your Azure IoT Operations instance. Discovery handlers define the configuration of the handlers that can automatically discover assets and devices in your environment. When you create a discovery handler, it enables an OT user to configure the discovery of assets and devices of the type defined in the handler in the operations experience web UI.
144+
<!-- TODO - 2507 Expand this section with more details about the connector template configuration. -->
127145

128146
### Clone instance (preview)
129147

67.7 KB
Loading
53.1 KB
Loading
71 KB
Loading
Loading
97 KB
Loading

articles/iot-operations/discover-manage-assets/concept-assets-devices.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,6 @@ An *event* is a notification of a state changes to your asset. For example, a ph
105105

106106
### Streams
107107

108-
<!-- TODO: Add more information about streams. -->
109-
110108
A *stream* is streaming data from a physical device. For example, a camera connected to the media connector can stream video data. Streams include the following properties:
111109

112110
| Property | Description |

articles/iot-operations/discover-manage-assets/overview-http-connector.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,25 @@ ms.date: 11/12/2024
1414

1515
This article introduces the connector for REST/HTTP (preview) in Azure IoT Operations. The connector for REST/HTTP calls REST endpoints to retrieve data to share with other Azure IoT Operations components. The connector for REST/HTTP is secure and performant.
1616

17-
## HTTP source types
17+
The connector for REST/HTTP enables integration with RESTful endpoints by periodically performing GET requests to devices, sensors, or systems that expose REST APIs. The connector can register the data's schema with the Azure Device Registry service, and forward the data to destinations such as MQTT broker or the state store for further processing and observability.
1818

19-
The connector for REST/HTTP can connect to various sources.
19+
The connector for REST/HTTP supports the following features:
2020

21-
<!-- TODO: Add details here when we have more information -->
21+
- Automatic retries when sampling failures occur. Reports a failed status for errors that can't be retried.
22+
- Integration with OpenTelemetry.
23+
- Use of _device endpoints_ and _namespace assets_.
24+
- Device endpoint and asset definition validation for REST compatibility.
25+
- Multiple authentication methods:
26+
- Username/password basic HTTP authentication
27+
- x509 client certificates
28+
- Anonymous access for testing purposes
29+
- Certificate trust bundle to specify additional certificate authorities
2230

23-
## Example uses
31+
For each configured dataset, the connector for REST/HTTP:
2432

25-
Example uses of the connector for REST/HTTP include calling REST APIs to retrieve data from industrial devices such as cameras, sensors, and other devices that expose data over HTTP.
26-
27-
<!-- TODO: Add details here when we have more information -->
33+
- Performs a GET request to the address specified in the device endpoint and appends the dataset's data source from the namespace asset.
34+
- Generates a message schema for each dataset based on the data it receives, and registers it with Schema Registry and Azure Device Registry.
35+
- Forwards the data to the specified destination.
2836

2937
## How does it relate to Azure IoT Operations?
3038

0 commit comments

Comments
 (0)