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/iot-operations/connect-to-cloud/howto-configure-dataflow-profile.md
+56-1Lines changed: 56 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.author: patricka
6
6
ms.service: azure-iot-operations
7
7
ms.subservice: azure-data-flows
8
8
ms.topic: how-to
9
-
ms.date: 04/09/2025
9
+
ms.date: 06/18/2025
10
10
11
11
#CustomerIntent: As an operator, I want to understand how to I can configure a a data flow profile to control a data flow behavior.
12
12
---
@@ -31,6 +31,20 @@ A data flow profile named *default* is created when Azure IoT Operations is depl
31
31
32
32
:::image type="content" source="media/howto-configure-dataflow-profile/default-profile.png" alt-text="Screenshot of the Azure portal displaying the default data flow profile details, including instance count and configuration options.":::
33
33
34
+
# [Azure CLI](#tab/azure-cli)
35
+
36
+
Use the [az iot operations dataflow profile show](/cli/azure/iot/ops/dataflow/profile/show#az-iot-ops-dataflow-profile-show) command to view the default data flow profile:
37
+
38
+
```azurecli
39
+
az iot operations dataflow profile show --resource-group <ResourceGroupName> --instance <AioInstanceName> --name default
40
+
```
41
+
42
+
Here's and example command to view the default data flow profile:
43
+
44
+
```azurecli
45
+
az iot operations dataflow profile show --resource-group myResourceGroup --instance myAioInstance --name default
46
+
```
47
+
34
48
# [Bicep](#tab/bicep)
35
49
36
50
```bicep
@@ -94,6 +108,19 @@ To create a new data flow profile, specify the name of the profile and the insta
94
108
95
109
:::image type="content" source="media/howto-configure-dataflow-profile/create-profile.png" alt-text="Screenshot of the Azure portal displaying the create data flow profile pane, including fields for name, instance count, and configuration options.":::
96
110
111
+
# [Azure CLI](#tab/azure-cli)
112
+
113
+
Use the [az iot operations dataflow profile create](/cli/azure/iot/ops/dataflow/profile/create#az-iot-ops-dataflow-profile-create) command to create a new data flow profile:
@@ -137,6 +164,20 @@ To manually scale the data flow profile, specify the number of instances you wan
137
164
138
165
:::image type="content" source="media/howto-configure-dataflow-profile/profile-scale.png" alt-text="Screenshot of the Azure portal displaying data flow details and the instance count slider set to 3.":::
139
166
167
+
# [Azure CLI](#tab/azure-cli)
168
+
169
+
Use the [az iot operations dataflow profile update](/cli/azure/iot/ops/dataflow/profile/update#az-iot-ops-dataflow-profile-update) command to update the instance count of a data flow profile:
@@ -171,6 +212,20 @@ To learn how to configure these diagnostic settings, see [ProfileDiagnostics](/r
171
212
172
213
:::image type="content" source="media/howto-configure-dataflow-profile/profile-diagnostics.png" alt-text="Screenshot of the Azure portal displaying data flow details and the log level options listed.":::
173
214
215
+
# [Azure CLI](#tab/azure-cli)
216
+
217
+
Use the [az iot operations dataflow profile update](/cli/azure/iot/ops/dataflow/profile/update#az-iot-ops-dataflow-profile-update) command to update the diagnostics settings of a data flow profile:
0 commit comments