Skip to content

Commit 75b6047

Browse files
committed
updates from the team
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 4f23e7b commit 75b6047

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/container-apps/enable-dapr.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ The following table outlines the currently supported list of Dapr sidecar config
2525
| ------------------------- | ------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
2626
| `--enable-dapr` | `dapr.enabled` | Enables Dapr on the container app. |
2727
| `--dapr-app-port` | `dapr.appPort` | The port your application is listening on which is used by Dapr for communicating to your application |
28-
| `--dapr-app-protocol` | `dapr.appProtocol` | Tells Dapr which protocol your application is using. Valid options are `http` or `grpc`. Default is `http`. |
28+
| `--dapr-app-protocol` | `dapr.appProtocol` | Tells Dapr which protocol your application is using. Valid options are `http` or `grpc`. Default setting is `http`. |
2929
| `--dapr-app-id` | `dapr.appId` | A unique Dapr identifier for your container app used for service discovery, state encapsulation, and the pub/sub consumer ID. |
30-
| `--dapr-max-request-size` | `dapr.httpMaxRequestSize` | Set the max size of request body http and grpc servers to handle uploading of large files. Default is 4 MB. |
31-
| `--dapr-read-buffer-size` | `dapr.httpReadBufferSize` | Set the max size of http header read buffer in to handle when sending multi-KB headers. The default 4 KB. |
30+
| `--dapr-max-request-size` | `dapr.httpMaxRequestSize` | Set the max size of request body http and grpc servers to handle uploading of large files. Default setting is `4 MB`. |
31+
| `--dapr-read-buffer-size` | `dapr.httpReadBufferSize` | Set the max size of http header read buffer in to handle when sending multi-KB headers. Default setting is `4 KB`. |
3232
| `--dapr-api-logging` | `dapr.enableApiLogging` | Enables viewing the API calls from your application to the Dapr sidecar. |
33-
| `--dapr-log-level` | `dapr.logLevel` | Set the log level for the Dapr sidecar. Allowed values: debug, error, info, warn. Default is `info`. |
33+
| `--dapr-log-level` | `dapr.logLevel` | Set the log level for the Dapr sidecar. Allowed values: debug, error, info, warn. Default setting is `info`. |
3434
| `--dapr-app-health-enabled` | `dapr.appHealth.enabled`| Optional configuration to enable app health checks for your container app using Boolean format. Default setting is `false`. |
35-
| `--dapr-app-health-path` | `dapr.appHealth.path`| Set the path that Dapr invokes for health probes when the app channel is HTTP. This value is ignored if the app channel is using gRPC. |
36-
| `--dapr-app-health-probe-interval` | `dapr.appHealth.probeIntervalSeconds`| Number of seconds between each health probe. |
37-
| `--dapr-app-health-probe-timeout` | `dapr.appHealth.probeTimeoutMilliseconds`| Timeout in milliseconds for health probe requests. This value must be smaller than the `probeIntervalSeconds` value. |
38-
| `--dapr-app-health-threshold` | `dapr.appHealth.threshold`| Max number of consecutive failures before the app is considered healthy. |
39-
| `--dapr-max-concurrency` | `dapr.maxConcurrency` | Limit the concurrency of your application. A valid value is any number larger than `0`. `-1` means no concurrency. |
35+
| `--dapr-app-health-path` | `dapr.appHealth.path`| Set the path that Dapr invokes for health probes when the app channel is HTTP. This value is ignored if the app channel is using gRPC. Default setting is `/healthz`. |
36+
| `--dapr-app-health-probe-interval` | `dapr.appHealth.probeIntervalSeconds`| Number of seconds between each health probe. Default setting is `3`. |
37+
| `--dapr-app-health-probe-timeout` | `dapr.appHealth.probeTimeoutMilliseconds`| Timeout in milliseconds for health probe requests. This value must be smaller than the `probeIntervalSeconds` value. Default setting is `500`. |
38+
| `--dapr-app-health-threshold` | `dapr.appHealth.threshold`| Max number of consecutive failures before the app is considered unhealthy. Default setting is `3`. |
39+
| `--dapr-max-concurrency` | `dapr.maxConcurrency` | Limit the concurrency of your application. A valid value is any number larger than `0`. `-1` means no limit on concurrency. |
4040

4141

4242
## Using the CLI

0 commit comments

Comments
 (0)