Fix H2 plugin instrumentation point (#447)
This commit is contained in:
parent
0233ffffde
commit
4012dc4ff7
|
|
@ -10,6 +10,7 @@ Release Notes.
|
|||
* Add plugin to trace Spring 6 and Resttemplate 6.
|
||||
* Move the baseline to JDK 17 for development, the runtime baseline is still Java 8 compatible.
|
||||
* Remove Powermock entirely from the test cases.
|
||||
* Fix H2 instrumentation point
|
||||
|
||||
#### Documentation
|
||||
* Update docs of Tracing APIs, reorganize the API docs into six parts
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ import static org.apache.skywalking.apm.agent.core.plugin.match.NameMatch.byName
|
|||
public class JdbcXAConnectionInstrumentation extends AbstractConnectionInstrumentation {
|
||||
|
||||
public static final String ENHANCE_CLASS = "org.h2.jdbcx.JdbcXAConnection";
|
||||
public static final String CONSTRUCTOR_INTERCEPT_CLASS = "org.apache.skywalking.apm.plugin.jdbc.jdbc.JdbcXAConnectionConstructorInterceptor";
|
||||
public static final String CONSTRUCTOR_INTERCEPT_CLASS = "org.apache.skywalking.apm.plugin.jdbc.h2.JdbcXAConnectionConstructorInterceptor";
|
||||
|
||||
@Override
|
||||
public ConstructorInterceptPoint[] getConstructorsInterceptPoints() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue