From 5b0927ae5d90380ac043f66787e253b03d218319 Mon Sep 17 00:00:00 2001 From: Edward Rudd Date: Tue, 30 Dec 2003 23:27:09 +0000 Subject: uses Date::Parse instead of ParseDate uses Getopt::Long instead of Getopt:Std Added in filling in of request_time fields instead of just timestamp. --- (limited to 'contrib') diff --git a/contrib/mysql_import_combined_log.pl b/contrib/mysql_import_combined_log.pl index 3384b77..1c801f2 100644 --- a/contrib/mysql_import_combined_log.pl +++ b/contrib/mysql_import_combined_log.pl @@ -1,8 +1,8 @@ -#!/usr/bin/perl +#!/usr/bin/perl -w use strict; -use Getopt::Std; +use Getopt::Long qw(:config bundling); use DBI; -use Time::ParseDate; +use Date::Parse; my %options = (); my $i = 0; @@ -17,14 +17,15 @@ my $TIMESTAMP = 3; my $REQUEST_LINE = 4; my @cols = ( 'remote_host', ## 0 - 'remote_user', ## 1 - '', ## 2 - 'time_stamp', ## 4 - 'request_line', ## 5 + 'remote_logname', ## 1 + 'remote_user', ## 2 + 'request_time', ## 3.string + 'time_stamp', ## 3.posix + 'request_line', ## 5 'request_method', ## 6 'request_uri', ## 7 - 'request_args', ## 8 - 'request_protocol', ## 9 + 'request_args', ## 8 + 'request_protocol', ## 9 'status', ## 10 'bytes_sent', ## 11 'referer', ## 12 @@ -32,9 +33,18 @@ my @cols = ( ); my $col = ''; -$Getopt::Std::STANDARD_HELP_VERSION = 1; ## if we show the help, exit afterwards. -getopts('h:u:p:d:t:f:', \%options); +%options = ( + "version" => sub { VERSION_MESSAGE(); exit 0; }, + "help|?" => sub { HELP_MESSAGE(); exit 0; }, + ); +GetOptions (\%options, + "h|host=s", + "d|database=s", + "t|table=s", + "u|username=s", + "p|password=s", + "f|logfile=s"); $options{h} ||= 'localhost'; $options{d} ||= ''; @@ -44,12 +54,14 @@ $options{f} ||= ''; if( ! $options{d} ) { + HELP_MESSAGE(); print "Must supply a database to connect to.\n"; exit 1; } if( ! $options{t} ) { + HELP_MESSAGE(); print "Must supply table name.\n"; exit 1; } @@ -65,6 +77,9 @@ if( $options{f} ) } $dbh = Connect(); +if (! $dbh) { + exit 1; +} $sql = "INSERT INTO $options{t} ("; foreach $col (@cols) @@ -73,11 +88,12 @@ foreach $col (@cols) } chop($sql); $sql .= ') VALUES ('; - +my ($linecount,$insertcount) = (0,0); while($line = ) { + $linecount++; @parts = SplitLogLine( $line ); - next if( $parts[$TIMESTAMP] == 0 ); + next if( $parts[$TIMESTAMP+1] == 0 ); $valuesSql = ''; for( $i = 0; $i < @cols; ++$i ) { @@ -91,10 +107,14 @@ while($line = ) if( ! $sth->execute() ) { print "Unable to perform specified query.\n$sql$valuesSql\n" . $sth->errstr() . "\n"; + } else { + $insertcount++; } $sth->finish(); } - +print "Parsed $linecount Log lines\n"; +print "Inserted $insertcount records\n"; +print "to table '$options{t}' in database '$options{d}' on '$options{h}'\n"; # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Connects to a MySQL database and returns the connection. @@ -117,7 +137,7 @@ sub SplitLogLine my $char = ''; my $part = ''; my @parts = (); - my $count; + my $count = 0; chomp($line); for( $i = 0; $i < length($line); ++$i ) { @@ -127,7 +147,8 @@ sub SplitLogLine ## print "Found part $part.\n"; if( $count == $TIMESTAMP ) { - $part = parsedate($part, WHOLE => 1, DATE_REQUIRED => 1, TIME_REQUIRED => 2); + push(@parts, "[".$part."]"); + $part = str2time($part); } push(@parts, $part); if( $count == $REQUEST_LINE ) @@ -176,14 +197,14 @@ sub HELP_MESSAGE print< -t [-h ] [-u ] [-p ] [-f The host to connect to. Default is localhost. - -d The database to use. Required. - -u The user to connect as. - -p The user's password. - -t
The name of the table in which to insert data. - -f The file to read from. If not given, data is read from stdin. - --help Print out this help message. - --version Print out the version of this software. + --host|-h The host to connect to. Default is localhost. + --database|-d The database to use. Required. + --username|-u The user to connect as. + --password|-p The user's password. + --table|-t
The name of the table in which to insert data. + --logfile|-f The file to read from. If not given, data is read from stdin. + --help|-? Print out this help message. + --version Print out the version of this software. EOF } @@ -194,10 +215,7 @@ EOF # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # sub VERSION_MESSAGE { - print "mysql_import_combined_log.pl version 1.0\n"; + print "mysql_import_combined_log.pl version 1.1\n"; } 1; - -1; - -- cgit v0.9.2