mirror of
https://github.com/manuelkasper/AS-Stats.git
synced 2025-02-20 11:44:12 +08:00
Revert "add a filter in find, so it will count as OR peeras, not both of them (same tree..)"
This reverts commit 7920698595fa2447ec38b6f0d0dd70a9e1105c17.
This commit is contained in:
parent
e8009e9e00
commit
f3f697399e
@ -8,7 +8,6 @@
|
||||
use strict;
|
||||
use RRDs;
|
||||
use File::Find;
|
||||
use File::Find::Rule;
|
||||
|
||||
if ($#ARGV != 2) {
|
||||
die("Usage: $0 <path to RRD file directory> <path to known links file> outfile\n");
|
||||
@ -27,7 +26,12 @@ my @links = values %knownlinks;
|
||||
# walk through all RRD files in the given path and extract stats for all links
|
||||
# from them; write the stats to a text file, sorted by total traffic
|
||||
|
||||
my @rrdfiles = File::Find::Rule->maxdepth(2)->file->in($rrdpath);
|
||||
my @rrdfiles;
|
||||
find(sub {
|
||||
if (-f $_) {
|
||||
push(@rrdfiles, $File::Find::name);
|
||||
}
|
||||
}, $rrdpath);
|
||||
|
||||
my $astraffic = {};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user