File: pl-viewer

package info (click to toggle)
movabletype-opensource 5.1.4%2Bdfsg-4%2Bdeb7u3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 32,996 kB
  • sloc: perl: 197,285; php: 62,405; sh: 166; xml: 117; makefile: 83; sql: 32
file content (37 lines) | stat: -rwxr-xr-x 754 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/perl -w

use strict;
use Getopt::Long;
use lib qw( lib extlib );
use MT::Util::PerformanceData;

GetOptions(
    'path=s' => \my ($logs_path),
    'file=s' => \my ($log_file),
    'sort=s' => \my ($sort_key),
);

if ( !$logs_path ) {
    usage();
    exit;
}

opendir DIRH, $logs_path or die "couldn't open $logs_path: $!";
my @dir = readdir DIRH;
closedir DIRH;

foreach my $file (@dir) {
    next if $file eq '.' or $file eq '..';
    next if $log_file && $file ne $log_file;
    my $data = MT::Util::PerformanceData->new(
        path => $logs_path,
        file => $file,
    );
    $data->report( sort => $sort_key, );
}

sub usage {
    print STDERR << "EOT";
usage: $0 -path='log_files_path' [-file='log_file'] [-sort='sort_key']
EOT
}