vote up 17 vote down star
1

I'm trying to find LONG UserAgent strings with LogParser.exe in my IIS logs. This example searches for entries with the string 'poo' in them.

LogParser.exe -i:IISW3C 
"SELECT COUNT(cs(User-Agent)) AS Client 
FROM *.log WHERE cs(User-Agent) LIKE '%poo%'"

I'm trying to say "How many entries have a User-Agent that is longer than 'x'".

flag

1 Answer

vote up 33 vote down check

Well, looks like I answered my own question.

LogParser.exe -i:IISW3C 
"SELECT COUNT(cs(User-Agent)) AS Client 
FROM *.log WHERE STRLEN(cs(User-Agent)) > 100"
link|flag
Can't vote for me! EPIC FAIL! ;) – Scott Hanselman Sep 17 '08 at 7:47
LOL! I'll vote for you Scott! :D – Rob Cooper Sep 17 '08 at 7:57
Thanks! Now the REAL question is, WHO accepts MY answer? – Scott Hanselman Sep 17 '08 at 7:58
No one can, you just get the +points for the upvotes, you can close the question (not allowing more answers), but that freezes voting.. – Rob Cooper Sep 17 '08 at 7:59
That's lame. It'll never turn green. Hey, how did you know I added comment? Is CTRL-F5 the way "notifications" work in this world? – Scott Hanselman Sep 17 '08 at 8:01
show 15 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.