logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Sys::Statistics::Linux::SockStats - Collect linux socket statistics.

Author

       Jonny Schulz <jschulz.cpan(at)bloonix.de>.

Description

       Sys::Statistics::Linux::SockStats gathers socket statistics from the virtual /proc filesystem (procfs).

       For more information read the documentation of the front-end module Sys::Statistics::Linux.

Exports

       No exports.

Methods

new()
       Call "new()" to create a new object.

           my $lxs = Sys::Statistics::Linux::SockStats->new;

       It's possible to set the path to the proc filesystem.

            Sys::Statistics::Linux::SockStats->new(
               files => {
                   # This is the default
                   path => '/proc',
                   sockstat => 'net/sockstat',
               }
           );

   get()
       Call "get()" to get the statistics. "get()" returns the statistics as a hash reference.

           my $stat = $lxs->get;

Name

       Sys::Statistics::Linux::SockStats - Collect linux socket statistics.

Reporting Bugs

       Please report all bugs to <jschulz.cpan(at)bloonix.de>.

See Also

proc(5)

Socket Statistics

       Generated by /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 (only available by kernels > 2.2).

Synopsis

           use Sys::Statistics::Linux::SockStats;

           my $lxs  = Sys::Statistics::Linux::SockStats->new;
           my $stat = $lxs->get;

See Also