According to the Dapr documentation, when API logging is enabled, all calls to the Dapr API server—including the health check endpoints—should be logged. The documentation specifies that health check logging is enabled by default (i.e., logging.apiLogging.omitHealthChecks is false).
In my Azure Container App with Dapr enabled, I have API logging turned on, but I haven't observed any logs for the health check endpoints. This leads me to wonder if Azure Container Apps might be automatically suppressing the logging of these health checks behind the scenes.
My question is:
Are Dapr sidecar health probes automatically configured when enabling Dapr in an Azure Container App?
If they are configured automatically, is it possible that Azure Container Apps suppress logging of these health check calls—even when API logging is enabled?
If not automatically configured, what steps would I need to take to enable Dapr sidecar health probes in Azure Container Apps?
Any clarification or pointers regarding the interplay between Dapr's sidecar health and the Azure Container Apps runtime would be greatly appreciated.

