=head1 NAME Sys::Statistics::Linux::CpuStats - Collect linux cpu statistics. =head1 SYNOPSIS use Sys::Statistics::Linux::CpuStats; my $lxs = Sys::Statistics::Linux::CpuStats->new; $lxs->init; sleep 1; my $stats = $lxs->get; Or my $lxs = Sys::Statistics::Linux::CpuStats->new(initfile => $file); $lxs->init; my $stats = $lxs->get; =head1 DESCRIPTION Sys::Statistics::Linux::CpuStats gathers cpu statistics from the virtual F filesystem (procfs). For more informations read the documentation of the front-end module L. =head1 CPU STATISTICS Generated by F for each cpu (cpu0, cpu1 ...). F without a number is the summary. user - Percentage of CPU utilization at the user level. nice - Percentage of CPU utilization at the user level with nice priority. system - Percentage of CPU utilization at the system level. idle - Percentage of time the CPU is in idle state. total - Total percentage of CPU utilization. Statistics with kernels >= 2.6. iowait - Percentage of time the CPU is in idle state because an I/O operation is waiting to complete. irq - Percentage of time the CPU is servicing interrupts. softirq - Percentage of time the CPU is servicing softirqs. steal - Percentage of stolen CPU time, which is the time spent in other operating systems when running in a virtualized environment (>=2.6.11). =head1 METHODS =head2 new() Call C to create a new object. my $lxs = Sys::Statistics::Linux::CpuStats->new; Maybe you want to store/load the initial statistics to/from a file: my $lxs = Sys::Statistics::Linux::CpuStats->new(initfile => '/tmp/cpustats.yml'); If you set C it's not necessary to call sleep before C. =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 $stats = $lxs->get; =head1 EXPORTS No exports. =head1 SEE ALSO B =head1 REPORTING BUGS Please report all bugs to . =head1 AUTHOR Jonny Schulz . =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::CpuStats; use strict; use warnings; use Carp qw(croak); our $VERSION = '0.17'; sub new { my ($class, %opts) = @_; my %self = ( files => { stat => '/proc/stat', } ); if (defined $opts{initfile}) { require YAML::Syck; $self{initfile} = $opts{initfile}; } return bless \%self, $class; } sub init { my $self = shift; if ($self->{initfile} && -r $self->{initfile}) { $self->{init} = YAML::Syck::LoadFile($self->{initfile}); } else { $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}) { YAML::Syck::DumpFile($self->{initfile}, $self->{init}); } return $self->{stats}; } # # private stuff # sub _load { my $self = shift; my $class = ref $self; my $file = $self->{files}; my (%stats, $iowait, $irq, $softirq, $steal); open my $fh, '<', $file->{stat} or croak "$class: unable to open $file->{stat} ($!)"; while (my $line = <$fh>) { if ($line =~ /^(cpu.*?)\s+(.*)$/) { my $cpu = \%{$stats{$1}}; (@{$cpu}{qw(user nice system idle)}, $iowait, $irq, $softirq, $steal) = split /\s+/, $2; # iowait, irq and softirq are only set # by kernel versions higher than 2.4. # steal is available since 2.6.11. $cpu->{iowait} = $iowait if defined $iowait; $cpu->{irq} = $irq if defined $irq; $cpu->{softirq} = $softirq if defined $softirq; $cpu->{steal} = $steal if defined $steal; } } close($fh); return \%stats; } sub _deltas { my $self = shift; my $class = ref $self; my $istat = $self->{init}; my $lstat = $self->{stats}; foreach my $cpu (keys %{$lstat}) { my $icpu = $istat->{$cpu}; my $dcpu = $lstat->{$cpu}; my $uptime; while (my ($k, $v) = each %{$dcpu}) { if (!defined $icpu->{$k}) { croak "$class: not defined key found '$k'"; } if ($v !~ /^\d+\z/ || $dcpu->{$k} !~ /^\d+\z/) { croak "$class: invalid value for key '$k'"; } $dcpu->{$k} -= $icpu->{$k}; $icpu->{$k} = $v; $uptime += $dcpu->{$k}; } foreach my $k (keys %{$dcpu}) { if ($dcpu->{$k} > 0) { $dcpu->{$k} = sprintf('%.2f', 100 * $dcpu->{$k} / $uptime); } elsif ($dcpu->{$k} < 0) { $dcpu->{$k} = sprintf('%.2f', 0); } else { $dcpu->{$k} = sprintf('%.2f', $dcpu->{$k}); } } $dcpu->{total} = sprintf('%.2f', 100 - $dcpu->{idle}); } } 1;