Change default for spring analytics to be off

This commit is contained in:
Laplie Anderson 2019-10-03 14:27:05 -04:00
parent 6b98564d30
commit ecc2ee7955
1 changed files with 5 additions and 0 deletions

View File

@ -35,6 +35,11 @@ public class SpringWebHttpServerDecorator
return "spring-web-controller";
}
@Override
protected boolean traceAnalyticsDefault() {
return false;
}
@Override
protected String method(final HttpServletRequest httpServletRequest) {
return httpServletRequest.getMethod();