28 Mar 2014 06:28 AM
So I am trying to pull url;'s in from clicks, I need to not pull in the url if it has a "." in the last part of the url
e.g www.test.com/test/test results in "test test" but www.test.com/test.jpg would return no result. The URI will change and so will the number of URI parts.
I hope that makes sense!
matt
28 Mar 2014 06:32 AM
have you considered excluding on what the .* would be such as if jpg, gif, png, js? That might be easier to exclude urls that way.
28 Mar 2014 07:51 AM
even better if you can part with monitoring of static resources (which in my experience has never been helpful) is to exclude them from being captured in the Servlets or ASP.NET sensor configuration. An easy way to see what is being captured currently as you check off different types is to open the web requests dashlet and look there.
I usually add exclusions for URIs that end with the following:
28 Mar 2014 08:00 AM
If you are going this route then I would also add on to it that I have found the a good way to exclude endings with regex and include both lowercase and capital.
Example: (png|PNG)
31 Mar 2014 11:25 PM
Excellent advice.. thanks a lot.