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 7d02d12 commit 3ff30e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public Object monitor(ProceedingJoinPoint pjp) throws Throwable {
public Object monitor(ProceedingJoinPoint pjp, Monitored monitored) throws Throwable {

String metricBasePath = buildMetricBasePath(pjp);
String newMetricBasePath = buildNewMetricBasePath(pjp);
String newMetricBasePath = buildMetricWithTagsBasePath(pjp);
String methodName = getMethodName(pjp);

String result = null;
Expand Down Expand Up @@ -127,7 +127,7 @@ private String getClassName(ProceedingJoinPoint pjp) {
return new StringBuilder(className).toString();
}

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

0 comments on commit 3ff30e4

Please sign in to comment.