From dca8984bcf0521c2a56e606eb8474c1ac5e4c97b Mon Sep 17 00:00:00 2001 From: sarahlwelton Date: Tue, 6 Sep 2022 10:39:42 -0400 Subject: [PATCH] DOC-9517 - Changed the Threshold Tracer Cluster Option's thresholdOptions.WithInterval to thresholdOptions.WithEmitInterval per DOC-9517. --- 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 09fa5935..5d1308b6 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));