-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Description
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();
}
Metadata
Metadata
Assignees
Labels
No labels