[rmi] add instrumentation names to client and server decorators
This commit is contained in:
parent
65c701dd51
commit
a4b0dcbc9f
|
@ -8,7 +8,7 @@ public class RmiClientDecorator extends ClientDecorator {
|
|||
|
||||
@Override
|
||||
protected String[] instrumentationNames() {
|
||||
return new String[] {"rmi"};
|
||||
return new String[] {"rmi", "rmi-client"};
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -8,7 +8,7 @@ public class RmiServerDecorator extends ServerDecorator {
|
|||
|
||||
@Override
|
||||
protected String[] instrumentationNames() {
|
||||
return new String[] {"rmi"};
|
||||
return new String[] {"rmi", "rmi-server"};
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue