|
| 1 | +/* |
| 2 | + * Copyright The OpenTelemetry Authors |
| 3 | + * SPDX-License-Identifier: Apache-2.0 |
| 4 | + */ |
| 5 | + |
| 6 | +package io.opentelemetry.instrumentation.apachehttpclient.v4_3.internal; |
| 7 | + |
| 8 | +import static java.util.logging.Level.FINE; |
| 9 | + |
| 10 | +import io.opentelemetry.instrumentation.apachehttpclient.v4_3.ApacheHttpClientTelemetryBuilder; |
| 11 | +import java.lang.reflect.InvocationTargetException; |
| 12 | +import java.lang.reflect.Method; |
| 13 | +import java.util.logging.Logger; |
| 14 | +import javax.annotation.Nullable; |
| 15 | + |
| 16 | +/** |
| 17 | + * This class is internal and is hence not for public use. Its APIs are unstable and can change at |
| 18 | + * any time. |
| 19 | + */ |
| 20 | +// TODO (trask) update the above javadoc similar to |
| 21 | +// https://github.com/open-telemetry/opentelemetry-java/pull/6886 |
| 22 | +public class Experimental { |
| 23 | + |
| 24 | + private static final Logger logger = Logger.getLogger(Experimental.class.getName()); |
| 25 | + |
| 26 | + @Nullable |
| 27 | + private static final Method emitExperimentalHttpClientMetricsMethod = |
| 28 | + getEmitExperimentalHttpClientMetricsMethod(); |
| 29 | + |
| 30 | + public void setEmitExperimentalHttpClientMetrics( |
| 31 | + ApacheHttpClientTelemetryBuilder builder, boolean emitExperimentalHttpClientMetrics) { |
| 32 | + |
| 33 | + if (emitExperimentalHttpClientMetricsMethod != null) { |
| 34 | + try { |
| 35 | + emitExperimentalHttpClientMetricsMethod.invoke(builder, emitExperimentalHttpClientMetrics); |
| 36 | + } catch (IllegalAccessException | InvocationTargetException e) { |
| 37 | + logger.log(FINE, e.getMessage(), e); |
| 38 | + } |
| 39 | + } |
| 40 | + } |
| 41 | + |
| 42 | + @Nullable |
| 43 | + private static Method getEmitExperimentalHttpClientMetricsMethod() { |
| 44 | + try { |
| 45 | + Method method = |
| 46 | + ApacheHttpClientTelemetryBuilder.class.getDeclaredMethod( |
| 47 | + "setEmitExperimentalHttpClientMetrics", boolean.class); |
| 48 | + method.setAccessible(true); |
| 49 | + return method; |
| 50 | + } catch (NoSuchMethodException e) { |
| 51 | + logger.log(FINE, e.getMessage(), e); |
| 52 | + return null; |
| 53 | + } |
| 54 | + } |
| 55 | +} |
0 commit comments