I have logs with these kind of URLs
127.0.0.1 [30/Jun/2010:13:41:00 -0700] "GET http://localhost:8101/res
ources/stats/?app=aip&id=exportIndividual-myAccountsGrid&sessionId=12
779254023900705a8ee9be596e973d6bc23cfa616b2de0709b7bce32b7&cnum=12345
&countrystring=USA HTTP/1.1" 200 43 "Mozilla/5.0 (Windows; U; Windows
NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 (CK-IBM) Firefox/3.6.6"
127.0.0.1 [30/Jun/2010:13:41:00 -0700] "GET http://localhost:8101/res
ources/stats/?app=aip&id=exportIndividual-supportGrid&sessionId=12779
254023900705a8ee9be596e973d6bc23cfa616b2de0709b7bce32b7&cnum=12345&co
untrystring=USA HTTP/1.1" 200 43 "Mozilla/5.0 (Windows; U; Windows NT
5.1; en-US; rv:1.9.2.6) Gecko/20100625 (CK-IBM) Firefox/3.6.6"
I m trying to get an extra section for all exportIndividual-* but i m running into issues. There are no errors but I get blank.
So far I ve tried
ExtraSectionCondition="URL,^.*$"
and
ExtraSectionFirstColumnValues="QUERY_STRING,app=aip&id=exportIndividual-*&(sessionId=[^&]+&cnum=[^&]+&countryString=[^&]+)"
Also
ExtraSectionCondition="URLWITHQUERY,/resources/stats/?app=swr&id=exportIndividual-*"
and
ExtraSectionFirstColumnValues="QUERY_STRING, (sessionId=[^&]+&cnum=[^&]+&countryString=[^&]+)"
None of them work though and I get empty extra sections
Any idea what may be going on?