Added quantiling UDAFs
[com/gs-lite.git] / bin / get_last_trace.pl
1 #! /usr/bin/perl\r
2 \r
3 # ------------------------------------------------\r
4 #   Copyright 2014 AT&T Intellectual Property\r
5 #   Licensed under the Apache License, Version 2.0 (the "License");\r
6 #   you may not use this file except in compliance with the License.\r
7 #   You may obtain a copy of the License at\r
8 #\r
9 #     http://www.apache.org/licenses/LICENSE-2.0\r
10 #\r
11 #   Unless required by applicable law or agreed to in writing, software\r
12 #   distributed under the License is distributed on an "AS IS" BASIS,\r
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14 #   See the License for the specific language governing permissions and\r
15 #   limitations under the License.\r
16 # -------------------------------------------\r
17 \r
18 \r
19 $outfile = "last_tracefile.txt";\r
20 $infl = "/var/log/gstrace";\r
21 \r
22 if(scalar(@ARGV)>0){\r
23         $infl = $ARGV[0];\r
24 }\r
25 \r
26 open I,$infl or die "Can't open input log file $infl\n";\r
27 \r
28 open O,">$outfile";\r
29 \r
30 while($line=<I>){\r
31         if($line =~ /rts:\[.*\]: Started Logging/){\r
32                 close O;\r
33                 open O,">$outfile";\r
34         }\r
35         print O $line;\r
36 }\r
37 close O;\r
38 \r
39 \r
40 \r