io.temporal.opentracing.OpenTracingOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of temporal-opentracing Show documentation
Show all versions of temporal-opentracing Show documentation
Temporal Java SDK OpenTracing Support Module
/*
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
*
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this material except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.temporal.opentracing;
import com.google.common.base.MoreObjects;
import io.opentracing.Tracer;
import io.opentracing.util.GlobalTracer;
import io.temporal.opentracing.internal.ActionTypeAndNameSpanBuilderProvider;
import java.util.Objects;
import java.util.function.Predicate;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public class OpenTracingOptions {
private static final OpenTracingOptions DEFAULT_INSTANCE =
OpenTracingOptions.newBuilder().build();
private final Tracer tracer;
private final SpanBuilderProvider spanBuilderProvider;
private final OpenTracingSpanContextCodec spanContextCodec;
private final Predicate isErrorPredicate;
public static OpenTracingOptions getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private OpenTracingOptions(
Tracer tracer,
SpanBuilderProvider spanBuilderProvider,
OpenTracingSpanContextCodec spanContextCodec,
Predicate isErrorPredicate) {
if (tracer == null) throw new IllegalArgumentException("tracer shouldn't be null");
this.tracer = tracer;
this.spanBuilderProvider = spanBuilderProvider;
this.spanContextCodec = spanContextCodec;
this.isErrorPredicate = isErrorPredicate;
}
@Nonnull
public Tracer getTracer() {
return tracer;
}
@Nonnull
public SpanBuilderProvider getSpanBuilderProvider() {
return spanBuilderProvider;
}
@Nonnull
public OpenTracingSpanContextCodec getSpanContextCodec() {
return spanContextCodec;
}
@Nonnull
public Predicate getIsErrorPredicate() {
return isErrorPredicate;
}
public static Builder newBuilder() {
return new Builder();
}
public static final class Builder {
private Tracer tracer;
private SpanBuilderProvider spanBuilderProvider = ActionTypeAndNameSpanBuilderProvider.INSTANCE;
private OpenTracingSpanContextCodec spanContextCodec =
OpenTracingSpanContextCodec.TEXT_MAP_INJECT_EXTRACT_CODEC;
private Predicate isErrorPredicate = t -> true;
private Builder() {}
public Builder setTracer(@Nullable Tracer tracer) {
this.tracer = tracer;
return this;
}
/**
* @param spanBuilderProvider custom {@link SpanBuilderProvider}, allows for more control over
* how OpenTracing spans are created, named, and tagged.
* @return this
*/
public Builder setSpanBuilderProvider(@Nonnull SpanBuilderProvider spanBuilderProvider) {
Objects.requireNonNull(spanBuilderProvider, "spanBuilderProvider can't be null");
this.spanBuilderProvider = spanBuilderProvider;
return this;
}
/**
* @param spanContextCodec custom {@link OpenTracingSpanContextCodec}, allows for more control
* over how SpanContext is encoded and decoded from Map
* @return this
*/
public Builder setSpanContextCodec(@Nonnull OpenTracingSpanContextCodec spanContextCodec) {
Objects.requireNonNull(spanContextCodec, "spanContextCodec can't be null");
this.spanContextCodec = spanContextCodec;
return this;
}
/**
* @param isErrorPredicate indicates whether the received exception should cause the OpenTracing
* span to finish in an error state or not. All exceptions will be logged to the span
* regardless, in order to provide a complete picture of the execution outcome. The "error"
* tag on the span will be set according to the value returned by this Predicate. By
* default, all exceptions will be considered errors.
* @see
* OpenTracing Documentation regarding error spans and logging exceptions.
* @return this
*/
public Builder setIsErrorPredicate(@Nonnull Predicate isErrorPredicate) {
Objects.requireNonNull(isErrorPredicate, "isErrorPredicate can't be null");
this.isErrorPredicate = isErrorPredicate;
return this;
}
public OpenTracingOptions build() {
return new OpenTracingOptions(
MoreObjects.firstNonNull(tracer, GlobalTracer.get()),
spanBuilderProvider,
spanContextCodec,
isErrorPredicate);
}
}
}