Line 1... |
Line 1... |
1 |
#!/usr/bin/env perl
|
1 |
#!/usr/bin/env perl
|
2 |
use warnings;
|
2 |
use warnings;
|
3 |
use strict;
|
3 |
use strict;
|
4 |
|
4 |
|
5 |
# Description: Disk usage for Unix systems
|
5 |
use version ; our $VERSION = 'v1.2.0';
|
6 |
|
6 |
|
7 |
our $VERSION = '1.2';
|
- |
|
8 |
|
- |
|
9 |
# Linux disks module for sysinfo client
|
7 |
# Disk usage for Unix system
|
10 |
# Author: R. W. Rodolico
|
8 |
# Author: R. W. Rodolico
|
11 |
# Date: 2016-04-08
|
9 |
# Date: 2016-04-08
|
12 |
|
10 |
#
|
13 |
# gets information on disks and partitions. Returns them as a hash
|
11 |
# gets information on disks and partitions. Returns them as a hash
|
14 |
# uses standard df -kT and parses the output
|
12 |
# uses standard df -kT and parses the output
|
15 |
# skips anything that does not have a device with /dev in it
|
13 |
# skips anything that does not have a device with /dev in it
|
16 |
# assumes the structure of the output is:
|
14 |
# assumes the structure of the output is:
|
17 |
# device fstype size usedSpace availableSpace percentSpace mountPoint
|
15 |
# device fstype size usedSpace availableSpace percentSpace mountPoint
|
18 |
# however, the output can sometimes wrap to multi lines, especially if the
|
16 |
# 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
|
17 |
# 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
|
18 |
# remove space duplications, then split on spaces and process each item in
|
21 |
# turn.
|
19 |
# turn.
|
22 |
# NOTE: this will totally break if you have spaces in your mount point
|
20 |
# NOTE: this will totally break if you have spaces in your mount point
|
- |
|
21 |
#
|
- |
|
22 |
# Revision History
|
- |
|
23 |
#
|
23 |
|
24 |
|
24 |
# find our location and use it for searching for libraries
|
25 |
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
|
- |
|
26 |
# or, if run interactively, in the parent of the modules
|
25 |
BEGIN {
|
27 |
BEGIN {
|
26 |
use FindBin;
|
28 |
use FindBin;
|
27 |
use File::Spec;
|
29 |
use File::Spec;
|
- |
|
30 |
# prepend the bin directory and its parent
|
28 |
use lib File::Spec->catdir($FindBin::Bin);
|
31 |
use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
|
29 |
eval( 'use library;' );
|
32 |
eval( 'use library;' );
|
30 |
die "Could not find library.pm in the code directory\n" if $@; # eval returned and error
|
33 |
die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
|
31 |
eval( 'use Data::Dumper;' );
|
- |
|
32 |
}
|
34 |
}
|
33 |
|
35 |
|
- |
|
36 |
#####
|
34 |
# check for valid OS.
|
37 |
##### Change these to match your needs
|
- |
|
38 |
#####
|
- |
|
39 |
|
- |
|
40 |
# Make this a list of all the modules we are going to use. You can replace undef with the version you need, if you like
|
- |
|
41 |
my $modulesList = {
|
35 |
exit 1 unless &checkOS( { 'linux' => undef, 'freebsd' => undef } );
|
42 |
'Data::Dumper' => undef,
|
- |
|
43 |
};
|
36 |
|
44 |
|
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
|
45 |
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
|
38 |
# script returns a 2
|
46 |
# the full path (from which or where)
|
39 |
foreach my $command ( 'df' ) {
|
47 |
my $commandsList = {
|
40 |
exit 2 unless &validCommandOnSystem( $command );
|
48 |
'df' => undef,
|
- |
|
49 |
};
|
41 |
}
|
50 |
|
- |
|
51 |
# list of operating systems this module can be used on.
|
- |
|
52 |
my $osList = {
|
- |
|
53 |
# 'mswin32' => undef,
|
- |
|
54 |
'freebsd' => undef,
|
- |
|
55 |
'linux' => undef,
|
- |
|
56 |
};
|
42 |
|
57 |
|
- |
|
58 |
# the category the return data should go into. See sysinfo for a list
|
43 |
my $CATEGORY = 'diskinfo';
|
59 |
my $CATEGORY = 'diskinfo';
|
44 |
|
60 |
|
- |
|
61 |
#####
|
- |
|
62 |
##### End of required
|
- |
|
63 |
#####
|
- |
|
64 |
|
- |
|
65 |
# some variables needed for our system
|
- |
|
66 |
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
|
- |
|
67 |
my @out; # temporary location for each line of output
|
- |
|
68 |
|
- |
|
69 |
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
|
- |
|
70 |
for my $module ( keys %$modulesList ) {
|
- |
|
71 |
eval ( "use $module;" );
|
- |
|
72 |
push @out, "$errorPrepend Could not load $module" if $@;
|
- |
|
73 |
}
|
- |
|
74 |
|
- |
|
75 |
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
|
- |
|
76 |
push @out, "$errorPrepend Invalid Operating System";
|
- |
|
77 |
}
|
- |
|
78 |
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
|
- |
|
79 |
push @out, "$errorPrepend Can not find some commands needed";
|
- |
|
80 |
}
|
- |
|
81 |
if ( !@out ) { # we made it, we have everything, so do the processing
|
- |
|
82 |
#####
|
- |
|
83 |
##### Your code starts here. Remember to push all output onto @out
|
- |
|
84 |
#####
|
- |
|
85 |
|
45 |
# process physical partitions
|
86 |
# process physical partitions
|
46 |
my $temp = qx/df -kT/; # execute the system command df, returned values in kilobytes, showing file system types
|
87 |
my $temp = qx/df -kT/; # execute the system command df, returned values in kilobytes, showing file system types
|
47 |
my @temp = split("\n", $temp ); # get array of lines
|
88 |
my @temp = split("\n", $temp ); # get array of lines
|
48 |
shift @temp; # get rid of the first line . . . it is nothing but header info
|
89 |
shift @temp; # get rid of the first line . . . it is nothing but header info
|
49 |
$temp = join( ' ', @temp ); # rejoin everything back with spaces
|
90 |
$temp = join( ' ', @temp ); # rejoin everything back with spaces
|
50 |
$temp =~ s/ +/ /gi; # remove all duplicate spaces
|
91 |
$temp =~ s/ +/ /gi; # remove all duplicate spaces
|
51 |
@temp = split( ' ', $temp ); # turn it back into an array of space separated values
|
92 |
@temp = split( ' ', $temp ); # turn it back into an array of space separated values
|
52 |
while (@temp) {
|
93 |
while (@temp) {
|
53 |
my $device = shift @temp; # get the device name
|
94 |
my $device = shift @temp; # get the device name
|
54 |
my $output = '';
|
95 |
my $output = '';
|
55 |
$output .= "$CATEGORY\t$device\tfstype\t" . (shift @temp) . "\n"; # next is fs type
|
96 |
$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
|
97 |
$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
|
98 |
$output .= "$CATEGORY\t$device\tused\t" . (shift @temp) . "\n"; # disk usage, in k
|
58 |
shift @temp; # $available, not recorded
|
99 |
shift @temp; # $available, not recorded
|
59 |
shift @temp; # $percent, not recorded
|
100 |
shift @temp; # $percent, not recorded
|
60 |
$output .= "$CATEGORY\t$device\tmount\t" . (shift @temp) . "\n"; # mount point
|
101 |
$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
|
102 |
# now, if it is a /dev device, we add it to the diskInfo hash
|
62 |
print $output if $device =~ m/\/dev/;
|
103 |
push @out, $output if $device =~ m/\/dev/;
|
- |
|
104 |
}
|
- |
|
105 |
|
- |
|
106 |
#####
|
- |
|
107 |
##### Your code ends here.
|
- |
|
108 |
#####
|
63 |
}
|
109 |
}
|
- |
|
110 |
|
- |
|
111 |
# If we are testing from the command line (caller is undef), print the results for debugging
|
- |
|
112 |
print join( "\n", @out ) . "\n" unless caller;
|
- |
|
113 |
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
|
- |
|
114 |
my $return = join( "\n", @out );
|
- |
|
115 |
|