diff --git a/daprdocs/content/en/reference/arguments-annotations-overview.md b/daprdocs/content/en/reference/arguments-annotations-overview.md index 5e5ab2db3..cd318d5a8 100644 --- a/daprdocs/content/en/reference/arguments-annotations-overview.md +++ b/daprdocs/content/en/reference/arguments-annotations-overview.md @@ -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` diff --git a/daprdocs/content/en/reference/cli/dapr-run.md b/daprdocs/content/en/reference/cli/dapr-run.md index 0b4b74868..df69f9105 100644 --- a/daprdocs/content/en/reference/cli/dapr-run.md +++ b/daprdocs/content/en/reference/cli/dapr-run.md @@ -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