2011-03-09 Ramon Novoa <rnovoa@artica.es>

* pandora_agent: Added a module to get the ocupied space % in a
	  partition.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4072 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
Ramon Novoa 2011-03-09 10:16:01 +00:00
parent 7a09b93afc
commit d3701182d0
2 changed files with 26 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-03-09 Ramon Novoa <rnovoa@artica.es>
* pandora_agent: Added a module to get the ocupied space % in a
partition.
2011-02-23 Ramon Novoa <rnovoa@artica.es>
* DEBIAN/postinst: Updated.

View File

@ -353,6 +353,9 @@ sub read_config (;$) {
} elsif ($line =~ /^\s*module_freepercentdisk\s+(.*)$/) {
$module->{'func'} = \&module_freepercentdisk;
$module->{'params'} = $1;
} elsif ($line =~ /^\s*module_ocupiedpercentdisk\s+(.*)$/) {
$module->{'func'} = \&module_ocupiedpercentdisk;
$module->{'params'} = $1;
} elsif ($line =~ /^\s*module_max\s+(.*)\s*$/) {
$module->{'max'} = $1;
} elsif ($line =~ /^\s*module_min\s+(.*)\s*$/) {
@ -1047,6 +1050,24 @@ sub module_freepercentdisk ($) {
return ($availp);
}
################################################################################
# Get the ocupied space in a partition in %.
################################################################################
sub module_ocupiedpercentdisk ($) {
my $module = shift;
# Check module parameters
return () unless ($module->{'params'} ne '');
# Data collection layer
load_parts ();
return () unless defined ($Parts{$module->{'params'}}) and defined ($Parts{$module->{'params'}}{'avail'});
my $ocupiedp = sprintf("%d", ($Parts{$module->{'params'}}{'total'} - $Parts{$module->{'params'}}{'avail'}) * 100 / $Parts{$module->{'params'}}{'total'});
return ($ocupiedp);
}
################################################################################
# Get the CPU usage %.
################################################################################