diff --git a/src/DurableTask.AzureStorage/Storage/AzureStorageClient.cs b/src/DurableTask.AzureStorage/Storage/AzureStorageClient.cs index 57a134bba..9e459fcc7 100644 --- a/src/DurableTask.AzureStorage/Storage/AzureStorageClient.cs +++ b/src/DurableTask.AzureStorage/Storage/AzureStorageClient.cs @@ -107,6 +107,10 @@ static TClient CreateClient( where TClientOptions : ClientOptions { TClientOptions options = storageProvider.CreateOptions(); + + // Disable distributed tracing by default to reduce the noise in the traces. + options.Diagnostics.IsDistributedTracingEnabled = false; + configurePolicies?.Invoke(options); return storageProvider.CreateClient(options);