Dapr Class
Container App Dapr configuration.
Constructor
Dapr(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
enabled
|
Boolean indicating if the Dapr side car is enabled. |
|
app_id
|
Dapr application identifier. |
|
app_protocol
|
str or
AppProtocol
Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http. Known values are: "http" and "grpc". |
|
app_port
|
Tells Dapr which port your application is listening on. |
|
http_read_buffer_size
|
Dapr max size of http header read buffer in KB to handle when sending multi-KB headers. Default is 65KB. |
|
http_max_request_size
|
Increasing max size of request body http and grpc servers parameter in MB to handle uploading of big files. Default is 4 MB. |
|
log_level
|
Sets the log level for the Dapr sidecar. Allowed values are debug, info, warn, error. Default is info. Known values are: "info", "debug", "warn", and "error". |
|
enable_api_logging
|
Enables API logging for the Dapr sidecar. |
|
app_health
|
Dapr application health check configuration. |
|
max_concurrency
|
Maximum number of concurrent requests, events handled by the Dapr sidecar. |
Attributes
app_health
Dapr application health check configuration.
app_health: _models.DaprAppHealth | None
app_id
Dapr application identifier.
app_id: str | None
app_port
Tells Dapr which port your application is listening on.
app_port: int | None
app_protocol
Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http. Known values are: "http" and "grpc".
app_protocol: str | _models.AppProtocol | None
enable_api_logging
Enables API logging for the Dapr sidecar.
enable_api_logging: bool | None
enabled
Boolean indicating if the Dapr side car is enabled.
enabled: bool | None
http_max_request_size
Increasing max size of request body http and grpc servers parameter in MB to handle uploading of big files. Default is 4 MB.
http_max_request_size: int | None
http_read_buffer_size
Dapr max size of http header read buffer in KB to handle when sending multi-KB headers. Default is 65KB.
http_read_buffer_size: int | None
log_level
Sets the log level for the Dapr sidecar. Allowed values are debug, info, warn, error. Default is info. Known values are: "info", "debug", "warn", and "error".
log_level: str | _models.LogLevel | None
max_concurrency
Maximum number of concurrent requests, events handled by the Dapr sidecar.
max_concurrency: int | None