nl.topicus.jdbc.shaded.io.opencensus.trace.config.TraceParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spanner-jdbc Show documentation
Show all versions of spanner-jdbc Show documentation
JDBC Driver for Google Cloud Spanner
/*
* Copyright 2017, OpenCensus Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file 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 nl.topicus.jdbc.shaded.io.opencensus.trace.config;
import static nl.topicus.jdbc.shaded.com.google.common.base.Preconditions.checkArgument;
import nl.topicus.jdbc.shaded.com.google.auto.value.AutoValue;
import nl.topicus.jdbc.shaded.io.opencensus.trace.Annotation;
import nl.topicus.jdbc.shaded.io.opencensus.trace.Link;
import nl.topicus.jdbc.shaded.io.opencensus.trace.NetworkEvent;
import nl.topicus.jdbc.shaded.io.opencensus.trace.Sampler;
import nl.topicus.jdbc.shaded.io.opencensus.trace.Span;
import nl.topicus.jdbc.shaded.io.opencensus.trace.samplers.Samplers;
import nl.topicus.jdbc.shaded.javax.annotation.concurrent.Immutable;
/** Class that holds global trace parameters. */
@AutoValue
@Immutable
public abstract class TraceParams {
// These values are the default values for all the global parameters.
private static final double DEFAULT_PROBABILITY = 1e-4;
private static final Sampler DEFAULT_SAMPLER = Samplers.probabilitySampler(DEFAULT_PROBABILITY);
private static final int DEFAULT_SPAN_MAX_NUM_ATTRIBUTES = 32;
private static final int DEFAULT_SPAN_MAX_NUM_ANNOTATIONS = 32;
private static final int DEFAULT_SPAN_MAX_NUM_NETWORK_EVENTS = 128;
private static final int DEFAULT_SPAN_MAX_NUM_LINKS = 128;
public static final TraceParams DEFAULT =
TraceParams.builder()
.setSampler(DEFAULT_SAMPLER)
.setMaxNumberOfAttributes(DEFAULT_SPAN_MAX_NUM_ATTRIBUTES)
.setMaxNumberOfAnnotations(DEFAULT_SPAN_MAX_NUM_ANNOTATIONS)
.setMaxNumberOfNetworkEvents(DEFAULT_SPAN_MAX_NUM_NETWORK_EVENTS)
.setMaxNumberOfLinks(DEFAULT_SPAN_MAX_NUM_LINKS)
.build();
/**
* Returns the global default {@code Sampler}. Used if no {@code Sampler} is provided in {@link
* nl.topicus.jdbc.shaded.io.opencensus.trace.SpanBuilder#setSampler(Sampler)}.
*
* @return the global default {@code Sampler}.
*/
public abstract Sampler getSampler();
/**
* Returns the global default max number of attributes per {@link Span}.
*
* @return the global default max number of attributes per {@link Span}.
*/
public abstract int getMaxNumberOfAttributes();
/**
* Returns the global default max number of {@link Annotation} events per {@link Span}.
*
* @return the global default max number of {@code Annotation} events per {@code Span}.
*/
public abstract int getMaxNumberOfAnnotations();
/**
* Returns the global default max number of {@link NetworkEvent} events per {@link Span}.
*
* @return the global default max number of {@code NetworkEvent} events per {@code Span}.
*/
public abstract int getMaxNumberOfNetworkEvents();
/**
* Returns the global default max number of {@link Link} entries per {@link Span}.
*
* @return the global default max number of {@code Link} entries per {@code Span}.
*/
public abstract int getMaxNumberOfLinks();
private static Builder builder() {
return new AutoValue_TraceParams.Builder();
}
/**
* Returns a {@link Builder} initialized to the same property values as the current instance.
*
* @return a {@link Builder} initialized to the same property values as the current instance.
*/
public abstract Builder toBuilder();
/** A {@code Builder} class for {@link TraceParams}. */
@AutoValue.Builder
public abstract static class Builder {
/**
* Sets the global default {@code Sampler}. It must be not {@code null} otherwise {@link
* #build()} will throw an exception.
*
* @param sampler the global default {@code Sampler}.
* @return this.
*/
public abstract Builder setSampler(Sampler sampler);
/**
* Sets the global default max number of attributes per {@link Span}.
*
* @param maxNumberOfAttributes the global default max number of attributes per {@link Span}. It
* must be positive otherwise {@link #build()} will throw an exception.
* @return this.
*/
public abstract Builder setMaxNumberOfAttributes(int maxNumberOfAttributes);
/**
* Sets the global default max number of {@link Annotation} events per {@link Span}.
*
* @param maxNumberOfAnnotations the global default max number of {@link Annotation} events per
* {@link Span}. It must be positive otherwise {@link #build()} will throw an exception.
* @return this.
*/
public abstract Builder setMaxNumberOfAnnotations(int maxNumberOfAnnotations);
/**
* Sets the global default max number of {@link NetworkEvent} events per {@link Span}.
*
* @param maxNumberOfNetworkEvents the global default max number of {@link NetworkEvent} events
* per {@link Span}. It must be positive otherwise {@link #build()} will throw an exception.
* @return this.
*/
public abstract Builder setMaxNumberOfNetworkEvents(int maxNumberOfNetworkEvents);
/**
* Sets the global default max number of {@link Link} entries per {@link Span}.
*
* @param maxNumberOfLinks the global default max number of {@link Link} entries per {@link
* Span}. It must be positive otherwise {@link #build()} will throw an exception.
* @return this.
*/
public abstract Builder setMaxNumberOfLinks(int maxNumberOfLinks);
abstract TraceParams autoBuild();
/**
* Builds and returns a {@code TraceParams} with the desired values.
*
* @return a {@code TraceParams} with the desired values.
* @throws NullPointerException if the sampler is {@code null}.
* @throws IllegalArgumentException if any of the max numbers are not positive.
*/
public TraceParams build() {
TraceParams traceParams = autoBuild();
checkArgument(traceParams.getMaxNumberOfAttributes() > 0, "maxNumberOfAttributes");
checkArgument(traceParams.getMaxNumberOfAnnotations() > 0, "maxNumberOfAnnotations");
checkArgument(traceParams.getMaxNumberOfNetworkEvents() > 0, "maxNumberOfNetworkEvents");
checkArgument(traceParams.getMaxNumberOfLinks() > 0, "maxNumberOfLinks");
return traceParams;
}
}
}