Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@ public class OpenTelemetryTracingFactory implements ApiTracerFactory {
private final OpenTelemetry openTelemetry;
private final ApiTracerContext apiTracerContext;

/**
* Warning: Traces may contain sensitive data such as resource names, full URLs, and error
* messages.
*
* <p>Before configuring subscribers or exporters for traces, review the contents of the spans and
* consult the <a href="https://opentelemetry.io/docs/security/handling-sensitive-data/">
* OpenTelemetry documentation</a> to set up filters and formatters to prevent leaking sensitive
* information, depending on your intended use case.
*
* <p>See also the <a href="https://opentelemetry.io/docs/concepts/semantic-conventions/">
* OpenTelemetry Semantic Conventions</a>.
*/
public OpenTelemetryTracingFactory(OpenTelemetry openTelemetry) {
this(openTelemetry, null, ApiTracerContext.empty());
}
Expand Down
Loading