Skip to content

Commit

Permalink
updated to snapshot version
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhrubajyoti Sadhu committed Aug 15, 2023
1 parent 3d2630a commit 7d02d12
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,6 @@ private void submit(String metricName, long value) {
}
}

private String buildNewMetricBasePath(ProceedingJoinPoint pjp) {
String className = clean(pjp.getSignature().getDeclaringTypeName());
return new StringBuilder(className).toString();
}

private Tags getMetricsTags(String methodName) {
Tag federationTag = Tag.of("federation_namespace", getMonitorMetastore());
Tag methodTag = Tag.of("method_name", methodName);
Expand All @@ -132,6 +127,11 @@ private String getClassName(ProceedingJoinPoint pjp) {
return new StringBuilder(className).toString();
}

private String buildNewMetricBasePath(ProceedingJoinPoint pjp) {
String className = getClassName(pjp);
return new StringBuilder(className).toString();
}

private String buildMetricBasePath(ProceedingJoinPoint pjp) {
String className = getClassName(pjp);
String methodName = getMethodName(pjp);
Expand Down

0 comments on commit 7d02d12

Please sign in to comment.