io.opentelemetry.javaagent.instrumentation.myfaces.v3_0.MyFacesInstrumentationModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-javaagent-jsf-myfaces-3.0 Show documentation
Show all versions of opentelemetry-javaagent-jsf-myfaces-3.0 Show documentation
Instrumentation of Java libraries using OpenTelemetry.
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.javaagent.instrumentation.myfaces.v3_0;
import static java.util.Arrays.asList;
import com.google.auto.service.AutoService;
import io.opentelemetry.javaagent.extension.instrumentation.InstrumentationModule;
import io.opentelemetry.javaagent.extension.instrumentation.TypeInstrumentation;
import java.util.List;
@AutoService(InstrumentationModule.class)
public class MyFacesInstrumentationModule extends InstrumentationModule {
public MyFacesInstrumentationModule() {
super("jsf-myfaces", "jsf-myfaces-3.0");
}
@Override
public List typeInstrumentations() {
return asList(
new ActionListenerImplInstrumentation(), new RestoreViewExecutorInstrumentation());
}
}