The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!perl
our $DATE = '2020-05-04'; # DATE
our $VERSION = '0.003'; # VERSION
use strict;
use Time::HiRes qw(time);
my %Opts = (
);
sub _with_unit {
no warnings 'uninitialized';
my ($n2, $n1, $t2, $t1) = @_;
if ($t2 == $t1) {
return (0, "");
} else {
my $s = ($n2-$n1) / ($t2-$t1);
if ($s > 1.5e9) {
return ($s/1e9, "Gi/s");
} elsif ($s > 1.5e6) {
return ($s/1e6, "Mi/s");
} elsif ($s > 1.5e3) {
return ($s/1e3, "Ki/s");
} else {
return ($s, "/s");
}
}
}
sub parse_cmdline {
my $res = GetOptions(
'version|v' => sub {
no warnings;
print "linespeed version $main::VERSION ($main::DATE)\n";
exit 0;
},
'help|h' => sub {
print <<USAGE;
Usage:
linespeed [OPTIONS]... < INPUT
linespeed --version, -v
linespeed --help, -h
Options:
For more details, see the manpage/documentation.
USAGE
exit 0;
},
);
exit 99 if !$res;
}
sub run {
$|++;
my $num_lines = 0;
my $prev_time = time();
my $prev_num_lines;
my ($first_num_lines, $first_time);
my $msg = "";
my $time;
my $code_report = sub {
my $new_msg = sprintf(
"Cur speed: %8.3f%-4s Avg: %8.3f%-4s Lines: %-8d",
_with_unit($num_lines, $prev_num_lines , $time, $prev_time ),
_with_unit($num_lines, $first_num_lines, $time, $first_time),
$num_lines,
);
print "\b" x length $msg;
print $new_msg, "\e[K"; # clear to EOL
$msg = $new_msg;
};
while (<>) {
$num_lines++;
$time = time();
unless (defined $prev_num_lines) {
$prev_num_lines = $num_lines;
$prev_time = time();
$first_num_lines = $num_lines;
$first_time = $prev_time;
next;
}
# don't report speed too often
next unless $time - $prev_time >= 0.5;
$code_report->();
$prev_num_lines = $num_lines;
$prev_time = $time;
}
$code_report->();
print "\n";
}
# MAIN
parse_cmdline();
run();
1;
# ABSTRACT: Calculate how fast input lines are coming in
# PODNAME: linespeed
__END__
=pod
=encoding UTF-8
=head1 NAME
linespeed - Calculate how fast input lines are coming in
=head1 VERSION
This document describes version 0.003 of linespeed (from Perl distribution App-linespeed), released on 2020-05-04.
=head1 SYNOPSIS
% tail -f some-log | linespeed
Cur speed: 542.751Ki/s Avg: 542.751Ki/s Lines: 928384
=head1 DESCRIPTION
C<linespeed> receives lines from standard input (or files) and calculates how
fast the lines are coming in. It can be used to measure, e.g. the current HTTP
requests/sec a server is getting from the webserver access log.
=head1 OPTIONS
=head1 COMPLETION
This script has shell tab completion capability with support for several
shells.
=head2 bash
To activate bash completion for this script, put:
complete -C linespeed linespeed
in your bash startup (e.g. C<~/.bashrc>). Your next shell session will then
recognize tab completion for the command. Or, you can also directly execute the
line above in your shell to activate immediately.
It is recommended, however, that you install modules using L<cpanm-shcompgen>
which can activate shell completion for scripts immediately.
=head2 tcsh
To activate tcsh completion for this script, put:
complete linespeed 'p/*/`linespeed`/'
in your tcsh startup (e.g. C<~/.tcshrc>). Your next shell session will then
recognize tab completion for the command. Or, you can also directly execute the
line above in your shell to activate immediately.
It is also recommended to install C<shcompgen> (see above).
=head2 other shells
For fish and zsh, install C<shcompgen> as described above.
=head1 TODO
Add option: --si to use power of 1000 not 1024 (but 1000 is the default).
Show speed in the last minute, 5 mins, 15 mins (or customizable).
=head1 HISTORY
First written in 2000-04-14.
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/App-linespeed>.
=head1 SOURCE
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=App-linespeed>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 SEE ALSO
=head1 AUTHOR
perlancar <perlancar@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2020, 2016 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut