We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed6077b commit e89e385Copy full SHA for e89e385
java-fit-performer/src/main/java/com/couchbase/utils/OptionsUtil.java
@@ -355,9 +355,11 @@ private static void applyObservabilityConfig(ClusterEnvironment.Builder clusterE
355
if (tlc.hasAnalyticsThresholdMillis()) {
356
builder.analyticsThreshold(Duration.ofMillis(tlc.getAnalyticsThresholdMillis()));
357
}
358
+ // [start:3.4.0]
359
if (tlc.hasTransactionsThresholdMillis()) {
360
builder.transactionsThreshold(Duration.ofMillis(tlc.getTransactionsThresholdMillis()));
361
362
+ // [end:3.4.0]
363
if (tlc.hasSampleSize()) {
364
builder.sampleSize(tlc.getSampleSize());
365
0 commit comments