Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing reliability issue with JedisMethodVisitor. #423

Merged
merged 5 commits into from
Sep 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# CHANGELOG

## Version 1.0.10
- Fixed reliability issue with Jedis client dependency collector
- Fixed Request Telemetry Sending bug with new schema
- Schema updated to the latest version. Changes in internal namespace `core/src/main/java/com/microsoft/applicationinsights/internal/schemav2`.
- Class `SendableData` in internal namespace deleted.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ public DefaultMethodVisitor(MethodInstrumentationDecision decision,
protected void byteCodeForMethodExit(int opcode) {

Object[] args = null;
String methodSignature = FINISH_METHOD_DEFAULT_SIGNATURE;
String methodSignature = getOnExitMethodDefaultSignature();
switch (translateExitCode(opcode)) {
case EXIT_WITH_EXCEPTION:
args = new Object[] { getMethodName(), duplicateTopStackToTempVariable(Type.getType(Throwable.class)) };
methodSignature = FINISH_METHOD_EXCEPTION_SIGNATURE;
methodSignature = getOnExitMethodExceptionSignature();
break;

case EXIT_WITH_RETURN_VALUE:
Expand All @@ -103,7 +103,7 @@ protected void byteCodeForMethodExit(int opcode) {
}

if (args != null) {
activateEnumMethod(ImplementationsCoordinator.class, FINISH_DETECT_METHOD_NAME, methodSignature, args);
activateEnumMethod(ImplementationsCoordinator.class, getOnExitMethodName(), methodSignature, args);
}
}

Expand Down Expand Up @@ -143,8 +143,28 @@ protected void onMethodEnter() {

activateEnumMethod(
ImplementationsCoordinator.class,
START_DETECT_METHOD_NAME,
START_DETECT_METHOD_SIGNATURE,
getOnEnterMethodName(),
getOnEnterMethodSignature(),
getMethodName());
}

protected String getOnEnterMethodName() {
return START_DETECT_METHOD_NAME;
}

protected String getOnEnterMethodSignature() {
return START_DETECT_METHOD_SIGNATURE;
}

protected String getOnExitMethodName() {
return FINISH_DETECT_METHOD_NAME;
}

protected String getOnExitMethodDefaultSignature() {
return FINISH_METHOD_DEFAULT_SIGNATURE;
}

protected String getOnExitMethodExceptionSignature() {
return FINISH_METHOD_EXCEPTION_SIGNATURE;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ public JedisClassDataProvider(Map<String, ClassInstrumentationData> classesToIns
public void add() {
try {
ClassInstrumentationData data =
new ClassInstrumentationData(JEDIS_CLASS_NAME, InstrumentedClassType.OTHER)
new ClassInstrumentationData(JEDIS_CLASS_NAME, InstrumentedClassType.Redis)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From this Wiki entry it looks like agent already supports types other than Other though the configuration (and later though some method in Notification Handler or in Default Method Visitor) using Type filed rather than Kind field.
Since we are using DefaultMethodVisitor here and are changing Notification Handler as well - should we consider using existing type handling mechanism as Wiki suggests?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I understand this comment correctly, then you're asking for the ability to override the type via config. For Redis, I'm in favor of having the type being set out-of-box. Doing this via AI-Agent.xml would mean yet another piece of config the customer needs to set. It makes sense for generic cases classes, but since we want to support Redis out-of-box with minimal config, I would say this is not needed.

.setReportCaughtExceptions(false)
.setReportExecutionTime(true);
MethodVisitorFactory methodVisitorFactory = new MethodVisitorFactory() {
@Override
public MethodVisitor create(MethodInstrumentationDecision decision, int access, String desc, String owner, String methodName, MethodVisitor methodVisitor, ClassToMethodTransformationData additionalData) {
return new JedisMethodVisitor(access, desc, JEDIS_CLASS_NAME, methodName, methodVisitor, additionalData);
return new JedisMethodVisitorV2(access, desc, JEDIS_CLASS_NAME, methodName, methodVisitor, additionalData);
}
};
data.addAllMethods(false, true, methodVisitorFactory);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,12 @@
import org.objectweb.asm.Opcodes;
import org.objectweb.asm.Type;


/**
* Created by gupele on 8/6/2015.
* @deprecated Replaced with JedisMethodVisitorV2
*/
@Deprecated
final class JedisMethodVisitor extends DefaultMethodVisitor {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@grlima just was thinking about the design decision. Wouldn't it be nice if we implement an interface like MethodVisitorInterface which has methods like getOnEnterMethod() and getOnEnterMethodSignature(). I believe this will provide extensibility and atleast in theory "Favor composition over inherritance" is true. Let me know your thoughts.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's a debatable design discussion and I do think it's a good idea, but since the existing functionality is based on inheritance (there are other methods in the super classes besides the getOn methods I introduced), I don't want to get into it at this time. We can track this and revisit the discussion at a later point.

private final static String FINISH_DETECT_METHOD_NAME = "methodFinished";
private final static String FINISH_METHOD_DEFAULT_SIGNATURE = "(Ljava/lang/String;J[Ljava/lang/Object;Ljava/lang/Throwable;)V";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* ApplicationInsights-Java
* Copyright (c) Microsoft Corporation
* All rights reserved.
*
* MIT License
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation files (the ""Software""), to deal in the Software
* without restriction, including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software, and to permit
* persons to whom the Software is furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all copies or
* substantial portions of the Software.
* THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
* PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
* FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/

package com.microsoft.applicationinsights.agent.internal.agent.redis;

import com.microsoft.applicationinsights.agent.internal.agent.DefaultMethodVisitor;
import com.microsoft.applicationinsights.agent.internal.agent.ClassToMethodTransformationData;

import org.objectweb.asm.MethodVisitor;

/**
* The class is responsible for instrumenting Jedis client methods.
*/
final class JedisMethodVisitorV2 extends DefaultMethodVisitor {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we have unit tests of test infra for the other Method Visitors or ...MethodStarted() calls that we can extend with adding tests for this new one?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately, we don't. There are some tests for other "config" related classes such as ClassInstrumentationData and MethodInstrumentationDecision, but those test basic object assignments. For visitors, there seems to have been an attempt before to unit test those (see EnterExitClassVisitorTest), but the tests are commented out. I imagine any kind of test would have to verify the bytecode is actually instrumented after the visitor was executed, which might be a cumbersome thing to do.

private final static String ON_ENTER_METHOD_NAME = "jedisMethodStarted";
private final static String ON_ENTER_METHOD_SIGNATURE = "(Ljava/lang/String;)V";

public JedisMethodVisitorV2(int access,
String desc,
String owner,
String methodName,
MethodVisitor methodVisitor,
ClassToMethodTransformationData additionalData) {
super(false, true, 0, access, desc, owner, methodName, methodVisitor, additionalData);
}

@Override
protected String getOnEnterMethodName() {
return ON_ENTER_METHOD_NAME;
}

@Override
protected String getOnEnterMethodSignature() {
return ON_ENTER_METHOD_SIGNATURE;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@ public interface AgentNotificationsHandler {
*/
void preparedStatementExecuteBatchMethodStarted(String classAndMethodNames, PreparedStatement statement, String sqlStatement, int batchCounter);

/**
* Called before methods in the Jedis client class are executed.
* @param classAndMethodNames The name of the class and method separated by '.'
*/
void jedisMethodStarted(String classAndMethodNames);

/**
* A 'regular' method enter. Non HTTP/SQL method
* @param classAndMethodNames The name of the class and method separated by '.'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@
public enum InstrumentedClassType {
SQL,
HTTP,
OTHER
OTHER,
Redis
}
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,17 @@ public void sqlStatementMethodStarted(String name, Statement statement, String s
}
}

@Override
public void jedisMethodStarted(String name) {
try {
AgentNotificationsHandler implementation = getImplementation();
if (implementation != null) {
implementation.jedisMethodStarted(name);
}
} catch (Throwable t) {
}
}

@Override
public void methodStarted(String name) {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,16 @@ public void httpMethodFinished(String identifier, String method, String uri, int
telemetryClient.track(telemetry);
}

@Override
public void jedisMethodStarted(String name) {
int index = name.lastIndexOf('#');
if (index != -1) {
name = name.substring(0, index);
}

startMethod(InstrumentedClassType.Redis.toString(), name, new String[]{});
}

@Override
public void methodStarted(String name) {
int index = name.lastIndexOf('#');
Expand Down