All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.micrometer.tracing.test.reporter.wavefront.WavefrontBraveSetup Maven / Gradle / Ivy
/**
* Copyright 2022 the original author or 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
*
* https://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.micrometer.tracing.test.reporter.wavefront;
import brave.Tracing;
import brave.handler.SpanHandler;
import brave.http.HttpTracing;
import brave.propagation.ThreadLocalCurrentTraceContext;
import brave.sampler.Sampler;
import brave.test.TestSpanHandler;
import com.wavefront.sdk.common.application.ApplicationTags;
import com.wavefront.sdk.common.clients.WavefrontClient;
import io.micrometer.core.instrument.MeterRegistry;
import io.micrometer.observation.Observation;
import io.micrometer.observation.ObservationHandler;
import io.micrometer.observation.ObservationRegistry;
import io.micrometer.tracing.Tracer;
import io.micrometer.tracing.brave.bridge.*;
import io.micrometer.tracing.exporter.FinishedSpan;
import io.micrometer.tracing.handler.DefaultTracingObservationHandler;
import io.micrometer.tracing.handler.PropagatingReceiverTracingObservationHandler;
import io.micrometer.tracing.handler.PropagatingSenderTracingObservationHandler;
import io.micrometer.tracing.http.HttpClientHandler;
import io.micrometer.tracing.http.HttpServerHandler;
import io.micrometer.tracing.reporter.wavefront.WavefrontBraveSpanHandler;
import io.micrometer.tracing.reporter.wavefront.WavefrontSpanHandler;
import io.micrometer.tracing.test.reporter.BuildingBlocks;
import java.util.Deque;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.stream.Collectors;
/**
* Provides Wavefront setup with Brave.
*
* @author Marcin Grzejszczak
* @since 1.0.0
*/
public final class WavefrontBraveSetup implements AutoCloseable {
// To be used in tests ONLY
static WavefrontSpanHandler mockHandler;
private final Consumer closingFunction;
private final Builder.BraveBuildingBlocks braveBuildingBlocks;
WavefrontBraveSetup(Consumer closingFunction,
Builder.BraveBuildingBlocks braveBuildingBlocks) {
this.closingFunction = closingFunction;
this.braveBuildingBlocks = braveBuildingBlocks;
}
@Override
public void close() {
this.closingFunction.accept(this.braveBuildingBlocks);
}
/**
* @return all the Brave building blocks required to communicate with Zipkin
*/
public Builder.BraveBuildingBlocks getBuildingBlocks() {
return this.braveBuildingBlocks;
}
/**
* @param server Wavefront server URL
* @param token Wavefront token
* @return builder for the {@link WavefrontBraveSetup}
*/
public static WavefrontBraveSetup.Builder builder(String server, String token) {
return new WavefrontBraveSetup.Builder(server, token);
}
/**
* Builder for Brave with Wavefront.
*/
public static class Builder {
private final String server;
private final String token;
private String source;
private String applicationName;
private String serviceName;
private Function wavefrontSpanHandler;
private Function tracing;
private Function tracer;
private Function httpTracing;
@Deprecated
private Function httpServerHandler;
@Deprecated
private Function httpClientHandler;
private Function> handlers;
private BiConsumer>> customizers;
private Consumer closingFunction;
/**
* Creates a new instance of {@link Builder}.
* @param server server URL
* @param token authentication token
*/
public Builder(String server, String token) {
this.server = server;
this.token = token;
}
/**
* All Brave building blocks required to communicate with Zipkin.
*/
@SuppressWarnings("rawtypes")
public static class BraveBuildingBlocks implements BuildingBlocks {
private final WavefrontSpanHandler wavefrontSpanHandler;
private final Tracing tracing;
private final Tracer tracer;
private final BravePropagator propagator;
private final HttpTracing httpTracing;
@Deprecated
private final HttpServerHandler httpServerHandler;
@Deprecated
private final HttpClientHandler httpClientHandler;
private final BiConsumer>> customizers;
private final TestSpanHandler testSpanHandler;
/**
* Creates a new instance of {@link BraveBuildingBlocks}.
* @param wavefrontSpanHandler Wavefront span handler
* @param tracing tracing
* @param tracer tracer
* @param propagator propagator
* @param httpTracing http tracing
* @param httpServerHandler http server handler
* @param httpClientHandler http client handler
* @param customizers observation customizers
* @param testSpanHandler test span handler
*/
public BraveBuildingBlocks(WavefrontSpanHandler wavefrontSpanHandler, Tracing tracing, Tracer tracer,
BravePropagator propagator, HttpTracing httpTracing, HttpServerHandler httpServerHandler,
HttpClientHandler httpClientHandler,
BiConsumer>> customizers,
TestSpanHandler testSpanHandler) {
this.wavefrontSpanHandler = wavefrontSpanHandler;
this.tracing = tracing;
this.tracer = tracer;
this.propagator = propagator;
this.httpTracing = httpTracing;
this.httpServerHandler = httpServerHandler;
this.httpClientHandler = httpClientHandler;
this.customizers = customizers;
this.testSpanHandler = testSpanHandler;
}
@Override
public Tracer getTracer() {
return this.tracer;
}
@Override
public BravePropagator getPropagator() {
return this.propagator;
}
/**
* @deprecated scheduled for removal in 1.4.0
* @return http server handler
*/
@Deprecated
@Override
public HttpServerHandler getHttpServerHandler() {
return this.httpServerHandler;
}
/**
* @deprecated scheduled for removal in 1.4.0
* @return http client handler
*/
@Deprecated
@Override
public HttpClientHandler getHttpClientHandler() {
return this.httpClientHandler;
}
@Override
public BiConsumer>> getCustomizers() {
return this.customizers;
}
@Override
public List getFinishedSpans() {
return this.testSpanHandler.spans()
.stream()
.map(BraveFinishedSpan::fromBrave)
.collect(Collectors.toList());
}
}
/**
* Overrides the source.
* @param source name of the source
* @return this for chaining
*/
public Builder source(String source) {
this.source = source;
return this;
}
/**
* Overrides the application name.
* @param applicationName name of the application
* @return this for chaining
*/
public Builder applicationName(String applicationName) {
this.applicationName = applicationName;
return this;
}
/**
* Overrides the service name.
* @param serviceName name of the service
* @return this for chaining
*/
public Builder serviceName(String serviceName) {
this.serviceName = serviceName;
return this;
}
/**
* Overrides the wavefront span handler.
* @param wavefrontSpanHandler wavefront span handler provider
* @return this for chaining
*/
public Builder wavefrontSpanHandler(Function wavefrontSpanHandler) {
this.wavefrontSpanHandler = wavefrontSpanHandler;
return this;
}
/**
* Overrides Tracing.
* @param tracing tracing provider
* @return this for chaining
*/
public Builder tracing(Function tracing) {
this.tracing = tracing;
return this;
}
/**
* Overrides Tracer.
* @param tracer tracer provider
* @return this for chaining
*/
public Builder tracer(Function tracer) {
this.tracer = tracer;
return this;
}
/**
* Overrides Http Tracing.
* @param httpTracing http tracing provider
* @return this for chaining
*/
public Builder httpTracing(Function httpTracing) {
this.httpTracing = httpTracing;
return this;
}
/**
* Allows customization of Observation Handlers.
* @param customizers customization provider
* @return this for chaining
*/
public Builder observationHandlerCustomizer(
BiConsumer>> customizers) {
this.customizers = customizers;
return this;
}
/**
* Overrides Http Server Handler.
* @param httpServerHandler http server handler provider
* @return this for chaining
*/
public Builder httpServerHandler(Function httpServerHandler) {
this.httpServerHandler = httpServerHandler;
return this;
}
/**
* Overrides Http Client Handler.
* @param httpClientHandler http client handler provider
* @return this for chaining
*/
public Builder httpClientHandler(Function httpClientHandler) {
this.httpClientHandler = httpClientHandler;
return this;
}
/**
* Overrides Observation Handlers
* @param handlers handlers provider
* @return this for chaining
*/
public Builder handlers(
Function> handlers) {
this.handlers = handlers;
return this;
}
/**
* Overrides the closing function.
* @param closingFunction closing function provider
* @return this for chaining
*/
public Builder closingFunction(Consumer closingFunction) {
this.closingFunction = closingFunction;
return this;
}
/**
* Registers setup.
* @param meterRegistry meter registry to set up Wavefront Sender
* @param registry observation registry to which the {@link ObservationHandler}
* should be attached
* @return setup with all Brave building blocks
*/
public WavefrontBraveSetup register(MeterRegistry meterRegistry, ObservationRegistry registry) {
WavefrontSpanHandler wavefrontSpanHandler = wavefrontSpanHandlerOrMock(meterRegistry);
WavefrontBraveSpanHandler wavefrontBraveSpanHandler = wavefrontBraveSpanHandler(wavefrontSpanHandler);
TestSpanHandler testSpanHandler = new TestSpanHandler();
Tracing tracing = this.tracing != null ? this.tracing.apply(wavefrontBraveSpanHandler)
: tracing(wavefrontBraveSpanHandler, testSpanHandler);
Tracer tracer = this.tracer != null ? this.tracer.apply(tracing) : tracer(tracing);
HttpTracing httpTracing = this.httpTracing != null ? this.httpTracing.apply(tracing) : httpTracing(tracing);
HttpServerHandler httpServerHandler = this.httpServerHandler != null
? this.httpServerHandler.apply(httpTracing) : httpServerHandler(httpTracing);
HttpClientHandler httpClientHandler = this.httpClientHandler != null
? this.httpClientHandler.apply(httpTracing) : httpClientHandler(httpTracing);
BiConsumer>> customizers = this.customizers != null
? this.customizers : (t, h) -> {
};
BraveBuildingBlocks braveBuildingBlocks = new BraveBuildingBlocks(wavefrontSpanHandler, tracing, tracer,
new BravePropagator(tracing), httpTracing, httpServerHandler, httpClientHandler, customizers,
testSpanHandler);
ObservationHandler extends Observation.Context> tracingHandlers = this.handlers != null
? this.handlers.apply(braveBuildingBlocks) : tracingHandlers(braveBuildingBlocks);
registry.observationConfig().observationHandler(tracingHandlers);
Consumer closingFunction = this.closingFunction != null ? this.closingFunction
: closingFunction();
return new WavefrontBraveSetup(closingFunction, braveBuildingBlocks);
}
private WavefrontSpanHandler wavefrontSpanHandlerOrMock(MeterRegistry registry) {
if (mockHandler == null) {
return this.wavefrontSpanHandler != null ? this.wavefrontSpanHandler.apply(registry)
: wavefrontSpanHandler(registry);
}
return mockHandler;
}
private WavefrontSpanHandler wavefrontSpanHandler(MeterRegistry meterRegistry) {
return new WavefrontSpanHandler(50000, new WavefrontClient.Builder(this.server, this.token).build(),
new MeterRegistrySpanMetrics(meterRegistry), this.source,
new ApplicationTags.Builder(this.applicationName, this.serviceName).build(), new HashSet<>());
}
private static WavefrontBraveSpanHandler wavefrontBraveSpanHandler(WavefrontSpanHandler handler) {
return new WavefrontBraveSpanHandler(handler);
}
private static Tracer tracer(Tracing tracing) {
return new BraveTracer(tracing.tracer(), new BraveCurrentTraceContext(tracing.currentTraceContext()),
new BraveBaggageManager());
}
private static Tracing tracing(SpanHandler spanHandler, TestSpanHandler testSpanHandler) {
return Tracing.newBuilder()
.traceId128Bit(true)
.addSpanHandler(spanHandler)
.addSpanHandler(testSpanHandler)
.currentTraceContext(ThreadLocalCurrentTraceContext.create())
.sampler(Sampler.ALWAYS_SAMPLE)
.build();
}
private static HttpTracing httpTracing(Tracing tracing) {
return HttpTracing.newBuilder(tracing).build();
}
private static HttpServerHandler httpServerHandler(HttpTracing httpTracing) {
return new BraveHttpServerHandler(brave.http.HttpServerHandler.create(httpTracing));
}
private static HttpClientHandler httpClientHandler(HttpTracing httpTracing) {
return new BraveHttpClientHandler(brave.http.HttpClientHandler.create(httpTracing));
}
private static Consumer closingFunction() {
return deps -> {
deps.httpTracing.close();
deps.tracing.close();
WavefrontSpanHandler reporter = deps.wavefrontSpanHandler;
reporter.close();
};
}
@SuppressWarnings("rawtypes")
private static ObservationHandler tracingHandlers(
BraveBuildingBlocks braveBuildingBlocks) {
Tracer tracer = braveBuildingBlocks.tracer;
LinkedList> handlers = new LinkedList<>();
handlers.add(new PropagatingSenderTracingObservationHandler<>(tracer, braveBuildingBlocks.propagator));
handlers.add(new PropagatingReceiverTracingObservationHandler<>(tracer, braveBuildingBlocks.propagator));
handlers.add(new DefaultTracingObservationHandler(tracer));
braveBuildingBlocks.customizers.accept(braveBuildingBlocks, handlers);
return new ObservationHandler.FirstMatchingCompositeObservationHandler(handlers);
}
}
/**
* Runs the given lambda with Zipkin setup.
* @param server Wavefront's server URL
* @param token Wavefront's token
* @param observationRegistry observation registry to register the handlers against
* @param meterRegistry meter registry
* @param consumer lambda to be executed with the building blocks
*/
public static void run(String server, String token, ObservationRegistry observationRegistry,
MeterRegistry meterRegistry, Consumer consumer) {
run(WavefrontBraveSetup.builder(server, token).register(meterRegistry, observationRegistry), consumer);
}
/**
* @param setup Brave setup with Wavefront
* @param consumer runnable to run
*/
public static void run(WavefrontBraveSetup setup, Consumer consumer) {
try {
consumer.accept(setup.getBuildingBlocks());
}
finally {
setup.close();
}
}
}