-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dynamically disabled instrumentation capability (#422)
* add dynamically disabled instrumentation capability * spotless * spotless * fix access and concurrency for single-threaded checker * Update custom/src/main/java/co/elastic/otel/config/DynamicInstrumentation.java Co-authored-by: Jonas Kunz <[email protected]> * feedback changes: daemon thread and priority note/todo * spotless --------- Co-authored-by: Jonas Kunz <[email protected]>
- Loading branch information
1 parent
134f325
commit 5222ef6
Showing
5 changed files
with
460 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
269 changes: 269 additions & 0 deletions
269
custom/src/main/java/co/elastic/otel/config/DynamicInstrumentation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,269 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you 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 co.elastic.otel.config; | ||
|
||
import io.opentelemetry.api.GlobalOpenTelemetry; | ||
import io.opentelemetry.api.trace.Tracer; | ||
import io.opentelemetry.api.trace.TracerProvider; | ||
import io.opentelemetry.sdk.common.InstrumentationScopeInfo; | ||
import io.opentelemetry.sdk.internal.ComponentRegistry; | ||
import io.opentelemetry.sdk.internal.ScopeConfigurator; | ||
import io.opentelemetry.sdk.trace.SdkTracerProvider; | ||
import io.opentelemetry.sdk.trace.SdkTracerProviderBuilder; | ||
import io.opentelemetry.sdk.trace.internal.TracerConfig; | ||
import java.lang.reflect.Field; | ||
import java.lang.reflect.InvocationTargetException; | ||
import java.lang.reflect.Method; | ||
import java.util.ArrayList; | ||
import java.util.HashMap; | ||
import java.util.HashSet; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Set; | ||
import java.util.concurrent.ConcurrentHashMap; | ||
import java.util.concurrent.ConcurrentMap; | ||
import java.util.logging.Level; | ||
import java.util.logging.Logger; | ||
|
||
/** | ||
* Notes: 1. The instrumentation can't have been disabled by configuration, eg using | ||
* -Dotel.instrumentation.[name].enabled=false as in that case it is never initialized so can't be | ||
* "re-enabled" 2. The specific instrumentation name is used, you can see these by setting this | ||
* class logging level to j.u.l.Level.CONFIG 3. The disable/re-enable is eventually consistent, | ||
* needing the application to pass a synchronization barrier to take effect - but for most | ||
* applications these are very frequent | ||
*/ | ||
public class DynamicInstrumentation { | ||
|
||
private static final Logger logger = Logger.getLogger(DynamicInstrumentation.class.getName()); | ||
public static final String INSTRUMENTATION_NAME_PREPEND = "io.opentelemetry."; | ||
// note the option can't be an env because no OSes support changing envs while the program runs | ||
public static final String INSTRUMENTATION_DISABLE_OPTION = | ||
"elastic.otel.java.disable_instrumentations"; | ||
|
||
private static Object getField(String fieldname, Object target) { | ||
try { | ||
Field field = target.getClass().getDeclaredField(fieldname); | ||
field.setAccessible(true); | ||
return field.get(target); | ||
} catch (NoSuchFieldException | IllegalAccessException e) { | ||
throw new IllegalStateException( | ||
"Error getting " + fieldname + " from " + target.getClass(), e); | ||
} | ||
} | ||
|
||
private static Object call(String methodname, Object target) { | ||
try { | ||
Method method = target.getClass().getDeclaredMethod(methodname); | ||
method.setAccessible(true); | ||
return method.invoke(target); | ||
} catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException e) { | ||
throw new IllegalStateException( | ||
"Error calling " + methodname + " on " + target.getClass(), e); | ||
} | ||
} | ||
|
||
private static <T> Object call( | ||
String methodname, Object target, T arg1, Class<? super T> arg1Class) { | ||
try { | ||
Method method = target.getClass().getDeclaredMethod(methodname, arg1Class); | ||
method.setAccessible(true); | ||
return method.invoke(target, arg1); | ||
} catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException e) { | ||
throw new IllegalStateException( | ||
"Error calling " + methodname + " on " + target.getClass() + "(" + arg1Class + ")", e); | ||
} | ||
} | ||
|
||
// SdkTracerProviderBuilder.setTracerConfigurator(ScopeConfigurator<<TracerConfig>> configurator) | ||
// here because it's not currently public | ||
public static SdkTracerProviderBuilder setTracerConfigurator( | ||
SdkTracerProviderBuilder sdkTracerProviderBuilder, | ||
ScopeConfigurator<TracerConfig> configurator) { | ||
call("setTracerConfigurator", sdkTracerProviderBuilder, configurator, ScopeConfigurator.class); | ||
return sdkTracerProviderBuilder; | ||
} | ||
|
||
// SdkTracerProvider.getTracerConfig(InstrumentationScopeInfo instrumentationScopeInfo) | ||
// here because it's not currently public | ||
private static TracerConfig getTracerConfig( | ||
SdkTracerProvider provider, InstrumentationScopeInfo instrumentationScopeInfo) { | ||
return (TracerConfig) | ||
call("getTracerConfig", provider, instrumentationScopeInfo, InstrumentationScopeInfo.class); | ||
} | ||
|
||
// SdkTracer.getInstrumentationScopeInfo() | ||
// here because it's not currently public | ||
private static InstrumentationScopeInfo getInstrumentationScopeInfo(Tracer sdkTracer) | ||
throws NoSuchFieldException, IllegalAccessException { | ||
return (InstrumentationScopeInfo) call("getInstrumentationScopeInfo", sdkTracer); | ||
} | ||
|
||
// Not an existing method | ||
// SdkTracerProvider.updateTracerConfigurations() | ||
// updates all tracers with the current SdkTracerProvider.tracerConfigurator | ||
// Code implementation equivalent to | ||
// this.tracerSdkComponentRegistry | ||
// .getComponents() | ||
// .forEach( | ||
// sdkTracer -> | ||
// sdkTracer.updateTracerConfig( | ||
// getTracerConfig(sdkTracer.getInstrumentationScopeInfo()))); | ||
// where SdkTracer.updateTracerConfig(TracerConfig tracerConfig) is equivalent to | ||
// this.tracerEnabled = tracerConfig.isEnabled(); | ||
private static void updateTracerConfigurations(TracerProvider provider) { | ||
if (!(provider instanceof SdkTracerProvider)) { | ||
provider = (TracerProvider) getField("delegate", provider); | ||
} | ||
ComponentRegistry<Tracer> tracerSdkComponentRegistry = | ||
(ComponentRegistry<Tracer>) getField("tracerSdkComponentRegistry", provider); | ||
SdkTracerProvider finalProvider = (SdkTracerProvider) provider; | ||
final List<String> activatedTracers; | ||
if (logger.isLoggable(Level.CONFIG)) { | ||
activatedTracers = new ArrayList<>(); | ||
} else { | ||
activatedTracers = null; | ||
} | ||
tracerSdkComponentRegistry | ||
.getComponents() | ||
.forEach( | ||
sdkTracer -> { | ||
try { | ||
InstrumentationScopeInfo instrumentationScopeInfo = | ||
getInstrumentationScopeInfo(sdkTracer); | ||
TracerConfig tConfig = getTracerConfig(finalProvider, instrumentationScopeInfo); | ||
Field tracerEnabledField = sdkTracer.getClass().getDeclaredField("tracerEnabled"); | ||
tracerEnabledField.setAccessible(true); | ||
// Update is synced but the reader is NOT necessarily so this is eventual | ||
// consistency, takes effect when the application passes a sync boundary | ||
synchronized (sdkTracer) { | ||
tracerEnabledField.set(sdkTracer, tConfig.isEnabled()); | ||
} | ||
if (logger.isLoggable(Level.CONFIG)) { | ||
String name = instrumentationScopeInfo.getName(); | ||
if (name.startsWith(INSTRUMENTATION_NAME_PREPEND)) { | ||
name = name.substring(INSTRUMENTATION_NAME_PREPEND.length()); | ||
} | ||
activatedTracers.add(name); | ||
activatedTracers.add(tConfig.isEnabled() ? "enabled" : "disabled"); | ||
} | ||
} catch (NoSuchFieldException | IllegalAccessException e) { | ||
throw new RuntimeException(e); | ||
} | ||
}); | ||
if (logger.isLoggable(Level.CONFIG)) { | ||
logger.log(Level.CONFIG, "Activated Tracers: " + activatedTracers); | ||
} | ||
} | ||
|
||
public static void reenableTracesFor(String instrumentationName) { | ||
UpdatableConfigurator.INSTANCE.put( | ||
InstrumentationScopeInfo.create(INSTRUMENTATION_NAME_PREPEND + instrumentationName), | ||
TracerConfig.enabled()); | ||
updateTracerConfigurations(GlobalOpenTelemetry.getTracerProvider()); | ||
} | ||
|
||
public static void disableTracesFor(String instrumentationName) { | ||
UpdatableConfigurator.INSTANCE.put( | ||
InstrumentationScopeInfo.create(INSTRUMENTATION_NAME_PREPEND + instrumentationName), | ||
TracerConfig.disabled()); | ||
updateTracerConfigurations(GlobalOpenTelemetry.getTracerProvider()); | ||
} | ||
|
||
public static class UpdatableConfigurator implements ScopeConfigurator<TracerConfig> { | ||
public static final UpdatableConfigurator INSTANCE = new UpdatableConfigurator(); | ||
private final ConcurrentMap<String, TracerConfig> map = new ConcurrentHashMap<>(); | ||
|
||
private UpdatableConfigurator() {} | ||
|
||
@Override | ||
public TracerConfig apply(InstrumentationScopeInfo scopeInfo) { | ||
return map.getOrDefault(scopeInfo.getName(), TracerConfig.defaultConfig()); | ||
} | ||
|
||
public void put(InstrumentationScopeInfo scope, TracerConfig tracerConfig) { | ||
map.put(scope.getName(), tracerConfig); | ||
} | ||
} | ||
|
||
static { | ||
if ("true".equals(System.getProperty(INSTRUMENTATION_DISABLE_OPTION + ".checker")) | ||
|| "true".equals(System.getenv("ELASTIC_OTEL_JAVA_DISABLE_INSTRUMENTATIONS_CHECKER"))) { | ||
Thread checker = new Thread(new OptionChecker(), "Elastic dynamic_instrumentation checker"); | ||
checker.setDaemon(true); | ||
checker.start(); | ||
} | ||
} | ||
|
||
static class OptionChecker implements Runnable { | ||
private Map<String, Boolean> alreadyDisabled = new HashMap<>(); | ||
|
||
// Note that if the property and the API are both used to specify enablement | ||
// for a particular instrument, and this thread is executing, the property | ||
// will take priority if the instrument is in the property - by virtue of running | ||
// more frequently; but won't if the instrument is removed from the property! | ||
// TODO define priority of enablement by source of disabler | ||
@Override | ||
public void run() { | ||
while (true) { | ||
String disableList; | ||
synchronized (this) { | ||
disableList = System.getProperty(INSTRUMENTATION_DISABLE_OPTION); | ||
} | ||
if (disableList != null && !disableList.trim().isEmpty()) { | ||
// some values in the disable_instrumentations list | ||
Set<String> toBeEnabled = null; | ||
if (!alreadyDisabled.isEmpty()) { | ||
toBeEnabled = new HashSet<>(alreadyDisabled.keySet()); | ||
} | ||
for (String toBeDisabled : disableList.split(",")) { | ||
toBeDisabled = toBeDisabled.trim(); | ||
if (alreadyDisabled.containsKey(toBeDisabled)) { | ||
// already disabled and keep it that way | ||
if (toBeEnabled != null) { | ||
toBeEnabled.remove(toBeDisabled); | ||
} | ||
} else { | ||
DynamicInstrumentation.disableTracesFor(toBeDisabled); | ||
alreadyDisabled.put(toBeDisabled, Boolean.TRUE); | ||
} | ||
} | ||
if (toBeEnabled != null) { | ||
for (String instrumentation : toBeEnabled) { | ||
DynamicInstrumentation.reenableTracesFor(instrumentation); | ||
alreadyDisabled.remove(instrumentation); | ||
} | ||
} | ||
} else { | ||
// empty list so anything currently disabled should be re-enabled | ||
if (!alreadyDisabled.isEmpty()) { | ||
for (String instrumentation : new HashSet<>(alreadyDisabled.keySet())) { | ||
DynamicInstrumentation.reenableTracesFor(instrumentation); | ||
alreadyDisabled.remove(instrumentation); | ||
} | ||
} | ||
} | ||
try { | ||
Thread.sleep(1000L); | ||
} catch (InterruptedException ignored) { | ||
} | ||
} | ||
} | ||
} | ||
} |
57 changes: 57 additions & 0 deletions
57
custom/src/test/java/co/elastic/otel/config/DynamicInstrumentationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you 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 co.elastic.otel.config; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.assertj.core.api.Assertions.assertThatThrownBy; | ||
|
||
import io.opentelemetry.sdk.common.InstrumentationScopeInfo; | ||
import io.opentelemetry.sdk.internal.ScopeConfigurator; | ||
import io.opentelemetry.sdk.trace.SdkTracerProvider; | ||
import io.opentelemetry.sdk.trace.SdkTracerProviderBuilder; | ||
import java.lang.reflect.Method; | ||
import java.lang.reflect.Modifier; | ||
import org.junit.jupiter.api.Test; | ||
|
||
public class DynamicInstrumentationTest { | ||
@Test | ||
// Functional testing is in DynamicInstrumentationSmokeTest | ||
// These tests are so that when the SDK implementation stops being | ||
// experimental, we switch from reflection to actual method calls | ||
public void checkForPublicImplementations() throws NoSuchMethodException, ClassNotFoundException { | ||
|
||
Method method1 = | ||
SdkTracerProviderBuilder.class.getDeclaredMethod( | ||
"setTracerConfigurator", ScopeConfigurator.class); | ||
assertThat(Modifier.toString(method1.getModifiers())).isNotEqualTo("public"); | ||
|
||
Method method2 = | ||
SdkTracerProvider.class.getDeclaredMethod( | ||
"getTracerConfig", InstrumentationScopeInfo.class); | ||
assertThat(Modifier.toString(method2.getModifiers())).isNotEqualTo("public"); | ||
|
||
Class<?> sdkTracer = Class.forName("io.opentelemetry.sdk.trace.SdkTracer"); | ||
Method method3 = sdkTracer.getDeclaredMethod("getInstrumentationScopeInfo"); | ||
assertThat(Modifier.toString(method3.getModifiers())).isNotEqualTo("public"); | ||
|
||
assertThatThrownBy( | ||
() -> SdkTracerProvider.class.getDeclaredMethod("updateTracerConfigurations")) | ||
.isInstanceOf(NoSuchMethodException.class); | ||
} | ||
} |
Oops, something went wrong.