package Linux::Info::ProcStats; use strict; use warnings; use Carp qw(croak); use Time::HiRes 1.9725; use YAML::XS 0.88; our $VERSION = '2.01'; # VERSION =head1 NAME Linux::Info::ProcStats - Collect linux process statistics. =head1 SYNOPSIS use Linux::Info::ProcStats; my $lxs = Linux::Info::ProcStats->new; $lxs->init; sleep 1; my $stat = $lxs->get; Or my $lxs = Linux::Info::ProcStats->new(initfile => $file); $lxs->init; my $stat = $lxs->get; =head1 DESCRIPTION Linux::Info::ProcStats gathers process statistics from the virtual F filesystem (procfs). For more information read the documentation of the front-end module L. =head1 IMPORTANT I renamed key C to C! =head1 LOAD AVERAGE STATISTICS Generated by F and F. new - Number of new processes that were produced per second. runqueue - The number of currently executing kernel scheduling entities (processes, threads). count - The number of kernel scheduling entities that currently exist on the system (processes, threads). blocked - Number of processes blocked waiting for I/O to complete (Linux 2.5.45 onwards). running - Number of processes in runnable state (Linux 2.5.45 onwards). =head1 METHODS =head2 new() Call C to create a new object. my $lxs = Linux::Info::ProcStats->new; Maybe you want to store/load the initial statistics to/from a file: my $lxs = Linux::Info::ProcStats->new(initfile => '/tmp/procstats.yml'); If you set C it's not necessary to call sleep before C. It's also possible to set the path to the proc filesystem. Linux::Info::ProcStats->new( files => { # This is the default path => '/proc', loadavg => 'loadavg', stat => 'stat', } ); =head2 init() Call C to initialize the statistics. $lxs->init; =head2 get() Call C to get the statistics. C returns the statistics as a hash reference. my $stat = $lxs->get; =head2 raw() Get raw values. =head1 EXPORTS Nothing. =head1 SEE ALSO =over =item * B =item * L =back =head1 AUTHOR Alceu Rodrigues de Freitas Junior, Eglasswalk3r@yahoo.com.brE =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2015 of Alceu Rodrigues de Freitas Junior, Eglasswalk3r@yahoo.com.brE This file is part of Linux Info project. Linux-Info is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Linux-Info is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Linux Info. If not, see . =cut sub new { my $class = shift; my $opts = ref( $_[0] ) ? shift : {@_}; my %self = ( files => { path => '/proc', loadavg => 'loadavg', stat => 'stat', } ); if ( defined $opts->{initfile} ) { $self{initfile} = $opts->{initfile}; } foreach my $file ( keys %{ $opts->{files} } ) { $self{files}{$file} = $opts->{files}->{$file}; } return bless \%self, $class; } sub init { my $self = shift; if ( $self->{initfile} && -r $self->{initfile} ) { $self->{init} = YAML::XS::LoadFile( $self->{initfile} ); $self->{time} = delete $self->{init}->{time}; } else { $self->{time} = Time::HiRes::gettimeofday(); $self->{init} = $self->_load; } } sub get { my $self = shift; my $class = ref $self; if ( !exists $self->{init} ) { croak "$class: there are no initial statistics defined"; } $self->{stats} = $self->_load; $self->_deltas; if ( $self->{initfile} ) { $self->{init}->{time} = $self->{time}; YAML::XS::DumpFile( $self->{initfile}, $self->{init} ); } return $self->{stats}; } sub raw { my $self = shift; my $stat = $self->_load; return $stat; } # # private stuff # sub _load { my $self = shift; my $class = ref $self; my $file = $self->{files}; my $lavg = $self->_procs; my $filename = $file->{path} ? "$file->{path}/$file->{loadavg}" : $file->{loadavg}; open my $fh, '<', $filename or croak "$class: unable to open $filename ($!)"; ( $lavg->{runqueue}, $lavg->{count} ) = ( split m@/@, ( split /\s+/, <$fh> )[3] ); close($fh); return $lavg; } sub _procs { my $self = shift; my $class = ref $self; my $file = $self->{files}; my %stat = (); my $filename = $file->{path} ? "$file->{path}/$file->{stat}" : $file->{stat}; open my $fh, '<', $filename or croak "$class: unable to open $filename ($!)"; while ( my $line = <$fh> ) { if ( $line =~ /^processes\s+(\d+)/ ) { $stat{new} = $1; } elsif ( $line =~ /^procs_(blocked|running)\s+(\d+)/ ) { $stat{$1} = $2; } } close($fh); return \%stat; } sub _deltas { my $self = shift; my $class = ref $self; my $istat = $self->{init}; my $lstat = $self->{stats}; my $time = Time::HiRes::gettimeofday(); my $delta = sprintf( '%.2f', $time - $self->{time} ); $self->{time} = $time; if ( !defined $istat->{new} || !defined $lstat->{new} ) { croak "$class: not defined key found 'new'"; } if ( $istat->{new} !~ /^\d+\z/ || $lstat->{new} !~ /^\d+\z/ ) { croak "$class: invalid value for key 'new'"; } my $new_init = $lstat->{new}; if ( $lstat->{new} == $istat->{new} || $istat->{new} > $lstat->{new} ) { $lstat->{new} = sprintf( '%.2f', 0 ); } elsif ( $delta > 0 ) { $lstat->{new} = sprintf( '%.2f', ( $new_init - $istat->{new} ) / $delta ); } else { $lstat->{new} = sprintf( '%.2f', $new_init - $istat->{new} ); } $istat->{new} = $new_init; } 1;