Skip to content

Commit f0ae088

Browse files
committed
Fixes?
1 parent e42f529 commit f0ae088

12 files changed

+19
-13
lines changed

articles/iot-operations/connect-to-cloud/howto-configure-adlsv2-endpoint.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Configure dataflow endpoints for Azure Data Lake Storage Gen2
33
description: Learn how to configure dataflow endpoints for Azure Data Lake Storage Gen2 in Azure IoT Operations.
44
author: PatAltimore
55
ms.author: patricka
6+
ms.service: azure-iot-operations
67
ms.subservice: azure-data-flows
78
ms.topic: how-to
89
ms.date: 10/16/2024

articles/iot-operations/connect-to-cloud/howto-configure-adx-endpoint.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Configure dataflow endpoints for Azure Data Explorer
33
description: Learn how to configure dataflow endpoints for Azure Data Explorer in Azure IoT Operations.
44
author: PatAltimore
55
ms.author: patricka
6+
ms.service: azure-iot-operations
67
ms.subservice: azure-data-flows
78
ms.topic: how-to
89
ms.date: 10/16/2024

articles/iot-operations/connect-to-cloud/howto-configure-dataflow-endpoint.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Configure dataflow endpoints in Azure IoT Operations
33
description: Configure dataflow endpoints to create connection points for data sources.
44
author: PatAltimore
55
ms.author: patricka
6+
ms.service: azure-iot-operations
67
ms.subservice: azure-data-flows
78
ms.topic: how-to
89
ms.date: 09/17/2024

articles/iot-operations/connect-to-cloud/howto-configure-dataflow-profile.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Configure dataflow profile in Azure IoT Operations
33
description: How to configure a dataflow profile in Azure IoT Operations to change a dataflow behavior.
44
author: PatAltimore
55
ms.author: patricka
6+
ms.service: azure-iot-operations
67
ms.subservice: azure-data-flows
78
ms.topic: how-to
89
ms.date: 08/29/2024

articles/iot-operations/connect-to-cloud/howto-configure-fabric-endpoint.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Configure dataflow endpoints for Microsoft Fabric OneLake
33
description: Learn how to configure dataflow endpoints for Microsoft Fabric OneLake in Azure IoT Operations.
44
author: PatAltimore
55
ms.author: patricka
6+
ms.service: azure-iot-operations
67
ms.subservice: azure-data-flows
78
ms.topic: how-to
89
ms.date: 10/16/2024

articles/iot-operations/connect-to-cloud/howto-configure-kafka-endpoint.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Configure Azure Event Hubs and Kafka dataflow endpoints in Azure IoT Oper
33
description: Learn how to configure dataflow endpoints for Kafka in Azure IoT Operations.
44
author: PatAltimore
55
ms.author: patricka
6+
ms.service: azure-iot-operations
67
ms.subservice: azure-data-flows
78
ms.topic: how-to
89
ms.date: 10/02/2024

articles/iot-operations/connect-to-cloud/howto-configure-local-storage-endpoint.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Configure local storage dataflow endpoint in Azure IoT Operations
33
description: Learn how to configure a local storage dataflow endpoint in Azure IoT Operations.
44
author: PatAltimore
55
ms.author: patricka
6+
ms.service: azure-iot-operations
67
ms.subservice: azure-data-flows
78
ms.topic: how-to
89
ms.date: 10/02/2024

articles/iot-operations/connect-to-cloud/howto-configure-mqtt-endpoint.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Configure MQTT dataflow endpoints in Azure IoT Operations
33
description: Learn how to configure dataflow endpoints for MQTT sources and destinations.
44
author: PatAltimore
55
ms.author: patricka
6+
ms.service: azure-iot-operations
67
ms.subservice: azure-data-flows
78
ms.topic: how-to
89
ms.date: 10/02/2024

articles/iot-operations/connect-to-cloud/howto-create-dataflow.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Create a dataflow using Azure IoT Operations
33
description: Create a dataflow to connect data sources and destinations using Azure IoT Operations.
44
author: PatAltimore
55
ms.author: patricka
6+
ms.service: azure-iot-operations
67
ms.subservice: azure-data-flows
78
ms.topic: how-to
89
ms.date: 10/08/2024
@@ -157,12 +158,6 @@ resource dataflow 'Microsoft.IoTOperations/instances/dataflowProfiles/dataflows@
157158
}
158159
```
159160

160-
Then, deploy via Azure CLI.
161-
162-
```azurecli
163-
az stack group create --name <DEPLOYMENT_NAME> --resource-group <RESOURCE_GROUP> --template-file <FILE>.bicep
164-
```
165-
166161
---
167162

168163
Review the following sections to learn how to configure the operation types of the dataflow.
@@ -256,7 +251,7 @@ To configure, use Kubernetes YAML or Bicep. Replace placeholder values with your
256251

257252
# [Portal](#tab/portal)
258253

259-
Currently not supported.
254+
Using a custom MQTT or Kafka endpoint as a source is currently not supported in the operations experience.
260255

261256
# [Kubernetes](#tab/kubernetes)
262257

@@ -314,7 +309,7 @@ Example with multiple MQTT topic filters with wildcards:
314309

315310
```yaml
316311
sourceSettings:
317-
endpointRef: mq
312+
endpointRef: default
318313
dataSources:
319314
- thermostats/+/telemetry/temperature/#
320315
- humidifiers/+/telemetry/humidity/#
@@ -339,7 +334,7 @@ Example with multiple MQTT topic filters with wildcards:
339334

340335
```bicep
341336
sourceSettings: {
342-
endpointRef: mq
337+
endpointRef: default
343338
dataSources: [
344339
'thermostats/+/telemetry/temperature/#',
345340
'humidifiers/+/telemetry/humidity/#'
@@ -362,7 +357,7 @@ To configure the Kafka topics:
362357

363358
# [Portal](#tab/portal)
364359

365-
Currently not supported.
360+
Using a Kafka endpoint as a source is currently not supported in the operations experience.
366361

367362
# [Kubernetes](#tab/kubernetes)
368363

@@ -793,7 +788,7 @@ To configure the data destination:
793788

794789
When using the operations experience, the data destination field is automatically interpreted based on the endpoint type. For example, if the dataflow endpoint is a storage endpoint, the destination details page prompts you to enter the container name. If the dataflow endpoint is a MQTT endpoint, the destination details page prompts you to enter the topic, and so on.
795790

796-
:::image type="content" source="media/howto-create-dataflow/dataflow-destination.png" alt-text="Screenshot showing the operations experience prompting the user to enter an MQTT topic given the endpoint type.":::
791+
:::image type="content" source="media/howto-create-dataflow/data-destination.png" alt-text="Screenshot showing the operations experience prompting the user to enter an MQTT topic given the endpoint type.":::
797792

798793
# [Kubernetes](#tab/kubernetes)
799794

@@ -885,7 +880,7 @@ spec:
885880
operations:
886881
- operationType: Source
887882
sourceSettings:
888-
endpointRef: mq
883+
endpointRef: default
889884
dataSources:
890885
- thermostats/+/telemetry/temperature/#
891886
- humidifiers/+/telemetry/humidity/#
@@ -909,7 +904,7 @@ spec:
909904
output: 'Tag 10'
910905
- operationType: Destination
911906
destinationSettings:
912-
endpointRef: mq
907+
endpointRef: default
913908
dataDestination: factory
914909
```
915910

articles/iot-operations/connect-to-cloud/tutorial-mqtt-bridge.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Bi-directional MQTT bridge to Azure Event Grid
33
description: Learn how to create a bi-directional MQTT bridge to Azure Event Grid using Azure IoT Operations dataflows.
44
author: PatAltimore
55
ms.author: patricka
6+
ms.service: azure-iot-operations
67
ms.subservice: azure-data-flows
78
ms.topic: tutorial
89
ms.date: 10/01/2024

0 commit comments

Comments
 (0)