Subversion Repositories camp_sysinfo_client_3

Rev

Rev 69 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
20 rodolico 1
#!/usr/bin/env perl
2
use warnings;
26 rodolico 3
use strict;  
2 rodolico 4
 
37 rodolico 5
# Description: Disk usage for Unix systems
20 rodolico 6
 
37 rodolico 7
our $VERSION = '1.2';
8
 
20 rodolico 9
# Linux disks module for sysinfo client
10
# Author: R. W. Rodolico
11
# Date:   2016-04-08
12
 
2 rodolico 13
# gets information on disks and partitions. Returns them as a hash
14
# uses standard df -kT and parses the output
15
# skips anything that does not have a device with /dev in it
16
# assumes the structure of the output is:
17
# device fstype size usedSpace availableSpace percentSpace mountPoint
18
# however, the output can sometimes wrap to multi lines, especially if the 
19
# device is long. So, we will replace all newlines with spaces, then 
20
# remove space duplications, then split on spaces and process each item in
21
# turn.
22
# NOTE: this will totally break if you have spaces in your mount point
23
 
251 rodolico 24
# find our location and use it for searching for libraries
2 rodolico 25
BEGIN {
251 rodolico 26
   use FindBin;
27
   use File::Spec;
28
   use lib File::Spec->catdir($FindBin::Bin);
29
   eval( 'use library;' );
30
   die "Could not find library.pm in the code directory\n" if $@; # eval returned and error
31
   eval( 'use Data::Dumper;' );
2 rodolico 32
}
33
 
251 rodolico 34
# check for valid OS. 
35
exit 1 unless &checkOS( { 'linux' => undef, 'freebsd' => undef } );
2 rodolico 36
 
251 rodolico 37
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
38
# script returns a 2
39
foreach my $command (  'df' ) {
40
   exit 2 unless &validCommandOnSystem( $command );
41
}
2 rodolico 42
 
43
my $CATEGORY = 'diskinfo';
44
 
45
# process physical partitions
46
my $temp = qx/df -kT/; # execute the system command df, returned values in kilobytes, showing file system types
28 rodolico 47
my @temp = split("\n", $temp ); # get array of lines
2 rodolico 48
shift @temp; # get rid of the first line . . . it is nothing but header info
49
$temp = join( ' ', @temp ); # rejoin everything back with spaces
50
$temp =~ s/ +/ /gi; # remove all duplicate spaces
51
@temp = split( ' ', $temp ); # turn it back into an array of space separated values
52
while (@temp) {
53
   my $device = shift @temp; # get the device name
54
   my $output = '';
55
   $output .=  "$CATEGORY\t$device\tfstype\t" . (shift @temp) . "\n"; # next is fs type
56
   $output .=  "$CATEGORY\t$device\tsize\t" . (shift @temp) . "\n"; # total partition size, in k
57
   $output .=  "$CATEGORY\t$device\tused\t" . (shift @temp) . "\n"; # disk usage, in k
58
   shift @temp; # $available, not recorded
59
   shift @temp; # $percent, not recorded
60
   $output .=  "$CATEGORY\t$device\tmount\t" . (shift @temp) . "\n"; # mount point
61
   # now, if it is a /dev device, we add it to the diskInfo hash
62
   print $output if $device =~ m/\/dev/;
63
}