Subversion Repositories camp_sysinfo_client_3

Rev

Rev 251 | 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: get information on lvm2 partitions
5
use version ; our $VERSION = 'v1.0.0';
6
 
6
 
7
our $VERSION = '1.0';
7
# Template for modules to be used in sysinfo
8
 
-
 
9
# Linux lvm2
-
 
10
# Author: R. W. Rodolico
8
# Author: R. W. Rodolico
11
# Date:  2017-11-24
9
# Date:   2017-11-24
12
 
10
#
13
# get some information on lvm2
11
# # get some information on lvm2
-
 
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
}
-
 
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 = {
-
 
40
        'lvs' => undef,
-
 
41
        'vgs' => undef,
-
 
42
        'pvs' => undef,
-
 
43
   };
-
 
44
 
-
 
45
# list of operating systems this module can be used on.
-
 
46
my $osList = {
-
 
47
#         'mswin32' => undef,
-
 
48
#         'freebsd' => undef,
-
 
49
         'linux'   => undef,
-
 
50
   };
23
 
51
 
24
# check for valid OS. 
-
 
25
exit 1 unless &checkOS( { 'linux' => undef } );
-
 
26
 
-
 
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 ( 'vgs','pvs','lvs' ) {
-
 
30
   exit 2 unless &validCommandOnSystem( $command );
-
 
31
}
-
 
32
 
-
 
33
# category we will use for all values found
52
# the category the return data should go into. See sysinfo for a list
34
# see sysinfo for a list of valid categories
-
 
35
my $CATEGORY = 'diskinfo';
53
my $CATEGORY = 'diskinfo';
36
 
54
 
-
 
55
#####
-
 
56
##### End of required
-
 
57
#####
-
 
58
 
-
 
59
# some variables needed for our system
-
 
60
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
-
 
61
my @out; # temporary location for each line of output
-
 
62
 
-
 
63
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
-
 
64
for my $module ( keys %$modulesList ) {
-
 
65
   eval ( "use $module;" );
-
 
66
   push @out, "$errorPrepend Could not load $module" if $@;
-
 
67
}
-
 
68
 
-
 
69
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
-
 
70
    push @out, "$errorPrepend Invalid Operating System";
-
 
71
}
-
 
72
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
-
 
73
   push @out, "$errorPrepend Can not find some commands needed";
-
 
74
}
-
 
75
if ( !@out ) { # we made it, we have everything, so do the processing
-
 
76
   #####
-
 
77
   ##### Your code starts here. Remember to push all output onto @out
37
my @output;
78
   #####
-
 
79
   
38
my @temp;
80
   my @temp;
-
 
81
   my @output;
39
my $line;
82
   my $line;
40
 
83
 
41
my %pv;
84
   my %pv;
42
my %vg;
85
   my %vg;
43
my %lv;
86
   my %lv;
44
my $name;
87
   my $name;
45
 
88
 
46
@output = qx( pvs --units k --noheadings );
89
   @output = qx( pvs --units k --noheadings );
47
# this outputs several lines like the following
90
   # this outputs several lines like the following
48
#  /dev/md0   vg-md0 lvm2 a--  5860147200.00k 6995968.00k
91
   #  /dev/md0   vg-md0 lvm2 a--  5860147200.00k 6995968.00k
49
chomp @output;
92
   chomp @output;
50
foreach $line ( @output ) {
93
   foreach $line ( @output ) {
51
   @temp = split( /\s+/, $line );
94
      @temp = split( /\s+/, $line );
52
   $name = $temp[1];
95
      $name = $temp[1];
53
   $pv{$name}{'vg'} = $temp[2];
96
      $pv{$name}{'vg'} = $temp[2];
54
   $pv{$name}{'size'} = $temp[5];
97
      $pv{$name}{'size'} = $temp[5];
55
   $pv{$name}{'size'} =~ s/k//;
98
      $pv{$name}{'size'} =~ s/k//;
56
   $pv{$name}{'size'} = int( $pv{$name}{'size'} );
99
      $pv{$name}{'size'} = int( $pv{$name}{'size'} );
57
   $pv{$name}{'free'} = $temp[5];
100
      $pv{$name}{'free'} = $temp[5];
58
   $pv{$name}{'free'} =~ s/k//;
101
      $pv{$name}{'free'} =~ s/k//;
59
   $pv{$name}{'free'} = int( $pv{$name}{'free'} );
102
      $pv{$name}{'free'} = int( $pv{$name}{'free'} );
60
}
103
   }
61
 
104
 
62
# following outputs something like this
105
   # following outputs something like this
63
#  vg-md0   1   9   0 wz--n- 5860147200.00k 6995968.00k
106
   #  vg-md0   1   9   0 wz--n- 5860147200.00k 6995968.00k
64
@output = qx( 'vgs' --units k --noheadings );
107
   @output = qx( 'vgs' --units k --noheadings );
65
chomp @output;
108
   chomp @output;
66
foreach $line ( @output ) {
109
   foreach $line ( @output ) {
67
   @temp = split( /\s+/, $line );
110
      @temp = split( /\s+/, $line );
68
   $name = $temp[1];
111
      $name = $temp[1];
69
   $vg{$name}{'size'} = $temp[6];
112
      $vg{$name}{'size'} = $temp[6];
70
   $vg{$name}{'size'} =~ s/k//;
113
      $vg{$name}{'size'} =~ s/k//;
71
   $vg{$name}{'size'} = int( $vg{$name}{'size'} );
114
      $vg{$name}{'size'} = int( $vg{$name}{'size'} );
72
   $vg{$name}{'free'} = $temp[7];
115
      $vg{$name}{'free'} = $temp[7];
73
   $vg{$name}{'free'} =~ s/k//;
116
      $vg{$name}{'free'} =~ s/k//;
74
   $vg{$name}{'free'} = int( $vg{$name}{'free'} );
117
      $vg{$name}{'free'} = int( $vg{$name}{'free'} );
75
}
118
   }
76
 
119
 
77
# outputs something like this
120
   # outputs something like this
78
#  centos                      vg-md0 -wi-ao--   10485760.00k                                           
121
   #  centos                      vg-md0 -wi-ao--   10485760.00k                                           
79
@output = qx( lvs --units k --noheadings );
122
   @output = qx( lvs --units k --noheadings );
80
chomp @output;
123
   chomp @output;
81
foreach $line ( @output ) {
124
   foreach $line ( @output ) {
82
   @temp = split( /\s+/, $line );
125
      @temp = split( /\s+/, $line );
83
   $name = $temp[1];
126
      $name = $temp[1];
84
   $lv{$name}{'vg'} = $temp[2];
127
      $lv{$name}{'vg'} = $temp[2];
85
   $lv{$name}{'size'} = $temp[4];
128
      $lv{$name}{'size'} = $temp[4];
86
   $lv{$name}{'size'} =~ s/k//;
129
      $lv{$name}{'size'} =~ s/k//;
87
   $lv{$name}{'size'} = int( $lv{$name}{'size'} );
130
      $lv{$name}{'size'} = int( $lv{$name}{'size'} );
88
}
131
   }
89
 
132
 
90
my @results;
133
   my @out;
91
 
134
 
92
foreach $line ( keys %lv ) {
135
   foreach $line ( keys %lv ) {
93
   push @results, "$CATEGORY\t$line\tsize\t" . $lv{$line}{'size'};
136
      push @out, "$CATEGORY\t$line\tsize\t" . $lv{$line}{'size'};
94
   push @results, "$CATEGORY\t$line\tfstype\tlvm2 lv";
137
      push @out, "$CATEGORY\t$line\tfstype\tlvm2 lv";
95
   push @results, "$CATEGORY\t$line\tvg\t" . $lv{$line}{'vg'};
138
      push @out, "$CATEGORY\t$line\tvg\t" . $lv{$line}{'vg'};
96
}
139
   }
97
 
140
 
98
foreach $line ( keys %vg ) {
141
   foreach $line ( keys %vg ) {
99
   push @results, "$CATEGORY\t$line\tsize\t" . $vg{$line}{'size'};
142
      push @out, "$CATEGORY\t$line\tsize\t" . $vg{$line}{'size'};
100
   push @results, "$CATEGORY\t$line\tused\t" . ( $vg{$line}{'size'} - $vg{$line}{'free'}) ;
143
      push @out, "$CATEGORY\t$line\tused\t" . ( $vg{$line}{'size'} - $vg{$line}{'free'}) ;
101
   push @results, "$CATEGORY\t$line\tfstype\tlvm2 vg";
144
      push @out, "$CATEGORY\t$line\tfstype\tlvm2 vg";
102
   my @components;
145
      my @components;
103
   foreach my $pv ( keys %pv ) {
146
      foreach my $pv ( keys %pv ) {
104
      if ( $pv{$pv}{'vg'} eq $line ) {
147
         if ( $pv{$pv}{'vg'} eq $line ) {
105
         push @components, $pv;
148
            push @components, $pv;
-
 
149
         }
106
      }
150
      }
-
 
151
      push @out, "$CATEGORY\t$line\tcomponents\t" . join( ' ', @components );
107
   }
152
   }
108
   push @results, "$CATEGORY\t$line\tcomponents\t" . join( ' ', @components );
-
 
109
}
-
 
110
 
153
 
111
foreach $line ( keys %pv ) {
154
   foreach $line ( keys %pv ) {
112
   push @results, "$CATEGORY\t$line\tsize\t" . $pv{$line}{'size'};
155
      push @out, "$CATEGORY\t$line\tsize\t" . $pv{$line}{'size'};
113
   push @results, "$CATEGORY\t$line\tfstype\tlvm2 pv";
156
      push @out, "$CATEGORY\t$line\tfstype\tlvm2 pv";
-
 
157
   }
-
 
158
   
-
 
159
   #####
-
 
160
   ##### Your code ends here.
-
 
161
   #####
114
}
162
}
115
 
163
 
-
 
164
# If we are testing from the command line (caller is undef), print the results for debugging
-
 
165
print join( "\n", @out ) . "\n" unless caller;
-
 
166
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
-
 
167
my $return = join( "\n", @out );
116
 
168
 
117
print join( "\n", @results ) . "\n";
-
 
118
 
-
 
119
exit 0;
-