From f5fc907e277d90926ef06a46e403222a0ac471ab Mon Sep 17 00:00:00 2001 From: sarahlwelton Date: Fri, 2 Sep 2022 12:33:24 -0400 Subject: [PATCH] Updated thresholdOptions.WithInterval to thresholdOptions.WithEmitInterval --- modules/ref/pages/client-settings.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ref/pages/client-settings.adoc b/modules/ref/pages/client-settings.adoc index 1bce3124..38462572 100644 --- a/modules/ref/pages/client-settings.adoc +++ b/modules/ref/pages/client-settings.adoc @@ -441,7 +441,7 @@ The default tracer logs the slowest requests per service. var clusterOptions = new ClusterOptions(); clusterOptions.WithThresholdTracing(thresholdOptions => { - thresholdOptions.WithInterval(TimeSpan.FromSeconds(10)); + thresholdOptions.WithEmitInterval(TimeSpan.FromSeconds(10)); thresholdOptions.WithSampleSize(10); thresholdOptions.WithKvThreshold(TimeSpan.FromMilliseconds(500)); thresholdOptions.WithQueryThreshold(TimeSpan.FromSeconds(1));