—=head1 NAME
Sys::Statistics::Linux::SockStats - Collect linux socket statistics.
=head1 SYNOPSIS
use Sys::Statistics::Linux::SockStats;
my $lxs = new Sys::Statistics::Linux::SockStats;
my $stats = $lxs->get;
=head1 DESCRIPTION
This module collects statistics by the virtual F</proc> filesystem (procfs) and is developed on default vanilla
kernels. It is tested on x86 hardware with the distributions SuSE (SuSE on s390 and s390x architecture as well),
Red Hat, Debian, Asianux, Slackware and Mandrake on kernel versions 2.4 and 2.6 and should run on all linux
kernels with a default vanilla kernel as well. It is possible that this module doesn't run on all distributions
if the procfs is too much changed.
Further it is necessary to run it as a user with the authorization to read the F</proc> filesystem.
=head1 SOCKET STATISTICS
Generated by F</proc/net/sockstat>.
used - Total number of used sockets.
tcp - Number of tcp sockets in use.
udp - Number of udp sockets in use.
raw - Number of raw sockets in use.
ipfrag - Number of ip fragments in use.
=head1 METHODS
=head2 new()
Call C<new()> to create a new object.
my $lxs = new Sys::Statistics::Linux::SockStats;
=head2 get()
Call C<get()> to get the statistics. C<get()> returns the statistics as a hash reference.
my $stats = $lxs->get;
=head1 EXPORTS
No exports.
=head1 SEE ALSO
B<proc(5)>
=head1 REPORTING BUGS
Please report all bugs to <jschulz.cpan(at)bloonix.de>.
=head1 AUTHOR
Jonny Schulz <jschulz.cpan(at)bloonix.de>.
=head1 COPYRIGHT
Copyright (c) 2006, 2007 by Jonny Schulz. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=cut
package
Sys::Statistics::Linux::SockStats;
our
$VERSION
=
'0.02'
;
use
strict;
use
warnings;
use
IO::File;
sub
new {
return
bless
{
files
=> {
sockstats
=>
'/proc/net/sockstat'
,
},
stats
=> {},
},
shift
;
}
sub
get {
my
$self
=
shift
;
$self
->{stats} =
$self
->_load;
return
$self
->{stats};
}
#
# private stuff
#
sub
_load {
my
$self
=
shift
;
my
$class
=
ref
$self
;
my
$file
=
$self
->{files};
my
$fh
= new IO::File;
my
%socks
;
$fh
->
open
(
$file
->{sockstats},
'r'
) or croak
"$class: unable to open $file->{sockstats} ($!)"
;
while
(
my
$line
= <
$fh
>) {
if
(
$line
=~ /sockets: used (\d+)/) {
$socks
{used} = $1;
}
elsif
(
$line
=~ /TCP: inuse (\d+)/) {
$socks
{tcp} = $1;
}
elsif
(
$line
=~ /UDP: inuse (\d+)/) {
$socks
{udp} = $1;
}
elsif
(
$line
=~ /RAW: inuse (\d+)/) {
$socks
{raw} = $1;
}
elsif
(
$line
=~ /FRAG: inuse (\d+)/) {
$socks
{ipfrag} = $1;
}
}
$fh
->
close
;
return
\
%socks
;
}
1;