[rmi] add instrumentation names to client and server decorators

This commit is contained in:
Pawel Chojnacki 2019-12-23 19:05:34 +01:00
parent 65c701dd51
commit a4b0dcbc9f
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ public class RmiClientDecorator extends ClientDecorator {
@Override
protected String[] instrumentationNames() {
return new String[] {"rmi"};
return new String[] {"rmi", "rmi-client"};
}
@Override

View File

@ -8,7 +8,7 @@ public class RmiServerDecorator extends ServerDecorator {
@Override
protected String[] instrumentationNames() {
return new String[] {"rmi"};
return new String[] {"rmi", "rmi-server"};
}
@Override