You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We using this project in our APM now. When using rule of httpclient, we need to skip some URL which is not cared, so we want to support skipPattern which is similar to the implement of 'servlet'.
public static boolean isTraced(final HttpRequest httpRequest) { if (skipPattern == null) return true; final String url = httpRequest.getRequestLine().getUri(); return !skipPattern.matcher(url).matches(); }
The text was updated successfully, but these errors were encountered:
We using this project in our APM now. When using rule of httpclient, we need to skip some URL which is not cared, so we want to support skipPattern which is similar to the implement of 'servlet'.
public static boolean isTraced(final HttpRequest httpRequest) {
if (skipPattern == null)
return true;
final String url = httpRequest.getRequestLine().getUri();
return !skipPattern.matcher(url).matches();
}
The text was updated successfully, but these errors were encountered: