@@ -55,16 +55,16 @@ interface DatadogTracerBuilder {
55
55
* is provided this property and its related logic will be ignored.
56
56
* @param traceRateLimit the trace rate limit as a value between 1 and Int.MAX_VALUE (default is Int.MAX_VALUE)
57
57
*/
58
- fun withTraceLimit (@IntRange(from = 1 , to = Int .MAX_VALUE .toLong()) traceRateLimit : Int ): DatadogTracerBuilder
58
+ fun withTraceRateLimit (@IntRange(from = 1 , to = Int .MAX_VALUE .toLong()) traceRateLimit : Int ): DatadogTracerBuilder
59
59
60
60
/* *
61
61
* Configures the builder to enable partial flushes when the number of spans in a specific trace
62
62
* reaches the given threshold.
63
63
*
64
- * @param withPartialFlushMinSpans The minimum number of spans required to trigger a partial flush.
64
+ * @param partialFlushMinSpans The minimum number of spans required to trigger a partial flush.
65
65
* @return The updated instance of [DatadogTracerBuilder] to allow method chaining.
66
66
*/
67
- fun withPartialFlushMinSpans (withPartialFlushMinSpans : Int ): DatadogTracerBuilder
67
+ fun withPartialFlushMinSpans (partialFlushMinSpans : Int ): DatadogTracerBuilder
68
68
69
69
/* *
70
70
* Adds a global tag which will be appended to all spans created with the built tracer.
@@ -74,9 +74,9 @@ interface DatadogTracerBuilder {
74
74
fun withTag (key : String , value : String ): DatadogTracerBuilder
75
75
76
76
/* *
77
- * Enables the trace bundling with the current active View. If this feature is enabled all
77
+ * Enables the trace bundling with the current active RUM View. If this feature is enabled all
78
78
* the spans from this moment on will be bundled with the current view information and you
79
- * will be able to see all the traces sent during a specific view in the Rum Explorer.
79
+ * will be able to see all the traces sent during a specific view in the RUM Explorer.
80
80
* @param enabled true by default
81
81
*/
82
82
fun setBundleWithRumEnabled (enabled : Boolean ): DatadogTracerBuilder
0 commit comments