Skip to content

Commit 531de16

Browse files
Merge pull request #284911 from ryanwinterms/main
Azure IoT Operations Dapr logging configuration
2 parents e39cbfe + 81fab45 commit 531de16

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

articles/iot-operations/create-edge-apps/howto-deploy-dapr.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ To create the yaml file, use the following component definitions:
7373
],
7474
"env": [
7575
{ "name": "pubSubLogLevel", "value": "Information" },
76-
{ "name": "stateStoreLogLevel", "value": "Information" }
76+
{ "name": "stateStoreLogLevel", "value": "Information" },
77+
{ "name": "defaultLogLevel", "value": "Warning" }
7778
]
7879
}
7980
spec:

articles/iot-operations/create-edge-apps/howto-develop-dapr-apps.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ The following definition components might require customization to your specific
6060
> | `template:metadata:annotations:dapr.io/app-port` | Tells Dapr which port your application is listening on. If your application us not using this feature (such as a pubsub subscription), then remove this line |
6161
> | `volumes:mqtt-client-token` | The System Authentication Token used for authenticating the Dapr pluggable components with the MQTT broker |
6262
> | `volumes:aio-ca-trust-bundle` | The chain of trust to validate the MQTT broker TLS cert. This defaults to the test certificate deployed with Azure IoT Operations |
63-
> | `containers:mq-dapr-app` | The Dapr application container you want to deploy |
63+
> | `containers:name` | A name given to your application container |
64+
> | `containers:image` | The application container you want to deploy |
6465

6566
> [!CAUTION]
6667
> If your Dapr application is not listening for traffic from the Dapr sidecar, then remove the `dapr.io/app-port` and `dapr.io/app-protocol` [annotations](https://docs.dapr.io/reference/arguments-annotations-overview/) otherwise the Dapr sidecar will fail to initialize.

articles/iot-operations/create-edge-apps/tutorial-event-driven-with-dapr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ To verify the MQTT bridge is working, deploy an MQTT client to the cluster.
252252

253253
## Optional - Create the Dapr application
254254

255-
ThIs tutorial uses a prebuilt container of the Dapr application. If you would like to modify and build the code yourself, follow these steps:
255+
This tutorial uses a prebuilt container of the Dapr application. If you would like to modify and build the code yourself, follow these steps:
256256

257257
### Prerequisites
258258

0 commit comments

Comments
 (0)