[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
|
@Override
|
||||||
protected String[] instrumentationNames() {
|
protected String[] instrumentationNames() {
|
||||||
return new String[] {"rmi"};
|
return new String[] {"rmi", "rmi-client"};
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -8,7 +8,7 @@ public class RmiServerDecorator extends ServerDecorator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String[] instrumentationNames() {
|
protected String[] instrumentationNames() {
|
||||||
return new String[] {"rmi"};
|
return new String[] {"rmi", "rmi-server"};
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue