Skip to content

Commit d3e79fd

Browse files
committed
Optimization withParent option description
1 parent 3d6c140 commit d3e79fd

File tree

1 file changed

+4
-4
lines changed
  • instrumentation-annotations/src/main/java/io/opentelemetry/instrumentation/annotations

1 file changed

+4
-4
lines changed

instrumentation-annotations/src/main/java/io/opentelemetry/instrumentation/annotations/WithSpan.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
/**
4040
* Specifies whether to use the current context as the parent when creating a Span.
4141
*
42-
* <p>If set to {@code true} (default), the newly created span will use the current context as its
43-
* parent, forming part of the same trace.
42+
* <p>If set to {@code true} (default), the created span will use the current context as its
43+
* parent, remaining within the same trace.
4444
*
45-
* <p>If set to {@code false}, the newly created span will use {@link Context#root()} as its
46-
* parent, starting a new trace independently.
45+
* <p>If set to {@code false}, the created span will use {@link Context#root()} as its parent,
46+
* starting a new, independent trace.
4747
*/
4848
boolean withParent() default true;
4949
}

0 commit comments

Comments
 (0)