HTTP URLs Filtering
Add -Dapplicare.http.filter to exclude a particular http urls from monitoring to the startup parameters for an application server and restart it. -D parameters only take affect on restart/start.
To ignore a url containing viewItem :
-Dapplicare.http.filter=.*viewItem.*
To ignore a url ending with .doc
-Dapplicare.http.filter=.*\.doc*
To ignore more than one urls
-Dapplicare.http.filter=."(.*\/home\/viewitem.jsp)|(.*\/home\/viewCategory*)"
Regex expressions can be used in filtering criteria. Below are few Regex resources |
|||||||
|
|
|
|||||
Java Regex - Tutorial
Java and Regular Expressions This tutorial introduces the usage of regular expressions and describes their implementation in Java. It also provides several Java reg...
|
|||||||
Regex101.com is a great resource for testing your regular expressions | |||||||
Please sign in to leave a comment.
Comments
0 comments