Subversion Repositories camp_sysinfo_client_3

Rev

Rev 251 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 251 Rev 256
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: ZFS Disk usage
5
use version ; our $VERSION = 'v1.0.0';
6
 
6
 
7
our $VERSION = '1.0';
-
 
8
 
-
 
9
# ZFS disks module for sysinfo client
7
# Template for modules to be used in sysinfo
10
# Author: R. W. Rodolico
8
# Author: R. W. Rodolico
11
# Date:  2017-11-24
9
# Date:   2017-11-24
12
 
10
#
13
# gets information on ZFS partitions. Returns them as a hash
11
# gets information on ZFS partitions. Returns them as a hash
-
 
12
#
-
 
13
# Revision History
-
 
14
#
-
 
15
#
14
 
16
 
15
# find our location and use it for searching for libraries
17
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
-
 
18
# or, if run interactively, in the parent of the modules
16
BEGIN {
19
BEGIN {
17
   use FindBin;
20
   use FindBin;
18
   use File::Spec;
21
   use File::Spec;
19
   use lib File::Spec->catdir($FindBin::Bin);
22
   # prepend the bin directory and its parent
20
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
23
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
21
   eval( 'use Data::Dumper;' );
24
   eval( 'use library;' );
-
 
25
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
22
}
26
}
23
 
27
 
-
 
28
#####
-
 
29
##### Change these to match your needs
-
 
30
#####
-
 
31
 
-
 
32
# 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
-
 
33
my $modulesList = {
-
 
34
        'Data::Dumper'     => undef,
-
 
35
   };
-
 
36
 
-
 
37
# 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
# the full path (from which or where)
-
 
39
my $commandsList = {
24
# check for valid OS. 
40
        'zpool' => undef,
-
 
41
   };
-
 
42
 
-
 
43
# list of operating systems this module can be used on.
-
 
44
my $osList = {
-
 
45
#         'mswin32' => undef,
25
exit 1 unless &checkOS( { 'linux' => undef, 'freebsd' => undef } );
46
         'freebsd' => undef,
-
 
47
         'linux'   => undef,
-
 
48
   };
26
 
49
 
27
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
-
 
28
# script returns a 2
-
 
29
foreach my $command ( 'zpool' ) {
-
 
30
   exit 2 unless &validCommandOnSystem( $command );
50
# the category the return data should go into. See sysinfo for a list
31
}
-
 
32
 
-
 
33
my $temp;
-
 
34
my $device;
-
 
35
my @temp;
-
 
36
my $CATEGORY = 'diskinfo';
51
my $CATEGORY = 'diskinfo';
37
 
52
 
38
sub zfsComponents {
53
#####
39
   my $zpoolName = shift;
54
##### End of required
-
 
55
#####
-
 
56
 
40
   my @lines = qx( zpool list -pHv $zpoolName );
57
# some variables needed for our system
41
   my @result;
-
 
42
   shift @lines; # we already have the first line of info
58
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
43
   my @temp = split( "\t", $lines[0] );
59
my @out; # temporary location for each line of output
-
 
60
 
44
   push @result, "$CATEGORY\t$zpoolName\tlevel\t$temp[1]";
61
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
45
   shift @lines;
-
 
46
   my @out;
-
 
47
   while ( $temp = shift @lines ) {
62
for my $module ( keys %$modulesList ) {
48
      @temp = split( "\t", $temp );
63
   eval ( "use $module;" );
49
      push @out, $temp[1] if defined $temp[1];
64
   push @out, "$errorPrepend Could not load $module" if $@;
50
   }
-
 
51
   push @result, "$CATEGORY\t$zpoolName\tcomponents\t" . join( " ", @out );
-
 
52
   return join( "\n", @result ) . "\n";
-
 
53
}
65
}
54
 
66
 
-
 
67
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
-
 
68
    push @out, "$errorPrepend Invalid Operating System";
-
 
69
}
-
 
70
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
-
 
71
   push @out, "$errorPrepend Can not find some commands needed";
-
 
72
}
-
 
73
if ( !@out ) { # we made it, we have everything, so do the processing
-
 
74
   #####
-
 
75
   ##### Your code starts here. Remember to push all output onto @out
-
 
76
   #####
-
 
77
   
-
 
78
   sub zfsComponents {
-
 
79
      my $zpoolName = shift;
-
 
80
      my @lines = qx( zpool list -pHv $zpoolName );
-
 
81
      my @result;
-
 
82
      shift @lines; # we already have the first line of info
-
 
83
      my @temp = split( "\t", $lines[0] );
-
 
84
      push @result, "$CATEGORY\t$zpoolName\tlevel\t$temp[1]";
-
 
85
      shift @lines;
-
 
86
      my @out;
-
 
87
      while ( my $temp = shift @lines ) {
-
 
88
         @temp = split( "\t", $temp );
-
 
89
         push @out, $temp[1] if defined $temp[1];
-
 
90
      }
-
 
91
      push @result, "$CATEGORY\t$zpoolName\tcomponents\t" . join( " ", @out );
-
 
92
      return join( "\n", @result ) . "\n";
-
 
93
   }
-
 
94
 
55
# process zfs
95
   # process zfs
56
@temp = qx ( zpool list -pH );
96
   my @devices = qx ( zpool list -pH );
57
foreach $device ( @temp ) {
97
   foreach my $device ( @devices ) {
58
   chomp $device;
98
      chomp $device;
59
   my ( $name, $size, $allocated, $free, $expandsz, $frag, $cap, $dedup, $health, $altroot ) = split( "\t", $device );
99
      my ( $name, $size, $allocated, $free, $expandsz, $frag, $cap, $dedup, $health, $altroot ) = split( "\t", $device );
60
   $size /= 1024;
100
      $size /= 1024;
61
   $allocated /= 1024;
101
      $allocated /= 1024;
62
   $allocated = int( $allocated );
102
      $allocated = int( $allocated );
63
   print "$CATEGORY\t$name\tfstype\tzfs\n"; # next is fs type
103
      push @out,  "$CATEGORY\t$name\tfstype\tzfs"; # next is fs type
64
   print "$CATEGORY\t$name\tsize\t$size\n"; # total partition size, in k
104
      push @out,  "$CATEGORY\t$name\tsize\t$size"; # total partition size, in k
65
   print "$CATEGORY\t$name\tused\t$allocated\n"; # disk usage, in k
105
      push @out,  "$CATEGORY\t$name\tused\t$allocated"; # disk usage, in k
66
   print &zfsComponents( $name );
106
      push @out,  @{ &zfsComponents( $name ) };
67
} # foreach
107
   } # foreach
-
 
108
   
-
 
109
   #####
-
 
110
   ##### Your code ends here.
-
 
111
   #####
-
 
112
}
68
 
113
 
-
 
114
# If we are testing from the command line (caller is undef), print the results for debugging
-
 
115
print join( "\n", @out ) . "\n" unless caller;
-
 
116
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
-
 
117
my $return = join( "\n", @out );
69
 
118