Signed-off-by: Loong <loong.dai@intel.com>
This commit is contained in:
Loong 2021-11-09 13:02:23 +00:00
parent 07fd61c286
commit 411694bb15
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ This table is meant to help users understand the equivalent options for running
| `--enable-metrics` | not supported | | configuration spec | Enable prometheus metric (default true) |
| `--enable-mtls` | not supported | | configuration spec | Enables automatic mTLS for daprd to daprd communication channels |
| `--enable-profiling` | `--enable-profiling` | | `dapr.io/enable-profiling` | Enable profiling |
| `--enable-domain-socket` | not supported | | not supported | Enable listen with Unix domain socket |
| `--unix-domain-socket` | `--unix-domain-socket` | `-u` | not supported | Enables listening with unix domain sockets for lower latency and greater throughput when an app calls into the Dapr sidecar. Not available on Windows OS |
| `--log-as-json` | not supported | | `dapr.io/log-as-json` | Setting this parameter to `true` outputs logs in JSON format. Default is `false` |
| `--log-level` | `--log-level` | | `dapr.io/log-level` | Sets the log level for the Dapr sidecar. Allowed values are `debug`, `info`, `warn`, `error`. Default is `info` |
| `--app-max-concurrency` | `--app-max-concurrency` | | `dapr.io/app-max-concurrency` | Limit the concurrency of your application. A valid value is any number larger than `0`

View File

@ -47,7 +47,7 @@ dapr run [flags] [command]
# Run a .NET application
dapr run --app-id myapp --app-port 5000 -- dotnet run
# Run a .Net application with socket
# Run a .Net application with unix domain sockets
dapr run --app-id myapp --app-port 5000 --unix-domain-socket /tmp -- dotnet run
# Run a Java application