From: Alan J. Pippin <ajp@pippins.net>
Date: Fri, 14 Mar 2008 19:34:06 +0000 (-0600)
Subject: Added date filter capability when parsing snapshot total logs.
X-Git-Url: http://git.pippins.net/%27%20.%20%24this-%3Ephpgw_js_url%20.%20%27/jscalendar/checkmark.gif?a=commitdiff_plain;h=7ecda38f0bec4bba1705620ced99f973a13627a0;p=zfs-ubuntu%2F.git

Added date filter capability when parsing snapshot total logs.
---

diff --git a/zfs-log-parser b/zfs-log-parser
index f3619db..c277e14 100755
--- a/zfs-log-parser
+++ b/zfs-log-parser
@@ -91,10 +91,13 @@ sub parse_snapshot_totals_logfile {
     %totals=();
     $in_totals=0;
     $maxlen=0;
+    $found_startdate=0;
     $header="";
     while(<FILE>) {
 	$line = $_;
         if($line =~ /logfile turned over/) { next; }
+        if(($in_totals == 0) && ("$startdate" ne "") && ($line !~ /$startdate/) && ($found_startdate==0)) { next; }
+        if(($in_totals == 0) && ("$startdate" ne "") && ($line =~ /$startdate/) && ($found_startdate==0)) { $found_startdate=1; }
 	if(($in_totals == 0) && ($line =~ /(\S+)\s+(\S+)\s+(\d+)\s+(\d+):(\d+):(\d+)\s+(\S+)\s+(\S+)/)) {
 	    $dayname=$1; $month=$2; $daynum=$3; $hour=$4; $minute=$5; $sec=$6; $year=$8;
 	    $in_totals = 1;