io.opentelemetry.javaagent.instrumentation.playws.v1_0.PlayWs10Singletons Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-javaagent-play-ws-1.0 Show documentation
Show all versions of opentelemetry-javaagent-play-ws-1.0 Show documentation
Instrumentation of Java libraries using OpenTelemetry.
The newest version!
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.javaagent.instrumentation.playws.v1_0;
import io.opentelemetry.instrumentation.api.instrumenter.Instrumenter;
import io.opentelemetry.javaagent.instrumentation.playws.PlayWsClientInstrumenterFactory;
import play.shaded.ahc.org.asynchttpclient.Request;
import play.shaded.ahc.org.asynchttpclient.Response;
public final class PlayWs10Singletons {
private static final Instrumenter INSTANCE =
PlayWsClientInstrumenterFactory.createInstrumenter("io.opentelemetry.play-ws-1.0");
public static Instrumenter instrumenter() {
return INSTANCE;
}
private PlayWs10Singletons() {}
}