Skip to content
Snippets Groups Projects
Commit 20cb79d4 authored by Simon Spinner's avatar Simon Spinner
Browse files

Remove hostname from query name.

parent 21685df8
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,10 @@ public class JDBCStatementInterceptor implements StatementInterceptorV2 {
StringBuilder operation = new StringBuilder();
operation.append("query[");
operation.append(currentInvocation.toString());
operation.append(currentInvocation.getOperation().getProtocol() + "://"
+ currentInvocation.getOperation().getComponent().getComponentClass() + "/"
+ currentInvocation.getOperation().getInterfaceName() + "#"
+ currentInvocation.getOperation().getOperationName());
operation.append("]");
ComponentRecord crec = MonitoringService.INSTANCE.requireComponent(con.getHost(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment