thats the output format i'm looking for, just that the data is coming from a logfile.
the script takes a URI from STDIN and parses the file based upon the fields of each line. so if i typed in:
/profileQuery
i get these results:
URI Date Seconds Fil
+e Size
----------------- --------------------- ------- ---
+------
/profileQuery [06/Apr/2004:13:40:36 0
+893
URI Date Seconds Fil
+e Size
----------------- --------------------- ------- ---
+------
/profileQuery [06/Apr/2004:13:41:12 0
+867
URI Date Seconds Fil
+e Size
----------------- --------------------- ------- ---
+------
/profileQuery [06/Apr/2004:13:41:23 0
+883
while that is ok if there are just a few entries for that URI in the log, not so much if there are several hundred. i found some documentation for the field specifiers.. but those were for Perl 6 and didnt work.
here is a snip of the code that looks at the log fields
while(<DB>) {
$Recs = $_;
chomp($Recs);
($IP, $Host, $Dash, $Date, $TZ, $Method, $URL, $Pro, $Status, $Tim
+e, $Size)
=
split(' ', $Recs);
if($URL eq $SearchFor) {
$SuccessCount = $SuccessCount + 1;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.