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: Processes Xen Clients
-
 
6
 
-
 
7
our $VERSION = '1.1';
5
use version ; our $VERSION = '1.1.1';
8
 
6
 
-
 
7
# Author: R. W. Rodolico
-
 
8
# Date:   2016-09-11
-
 
9
#
9
# Looks at various Xen parameters, mainly which DOMU's are running on it
10
# Looks at various Xen parameters, mainly which DOMU's are running on it
-
 
11
#
-
 
12
# Revision History
-
 
13
#
10
# Written by RWR, 20160911
14
# 20250403 RWR v1.1.1
-
 
15
# changed parseOutput to parseXenOutput to avoid conflict with libvirt module
-
 
16
#
11
 
17
 
12
# find our location and use it for searching for libraries
18
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
-
 
19
# or, if run interactively, in the parent of the modules
13
BEGIN {
20
BEGIN {
14
   use FindBin;
21
   use FindBin;
15
   use File::Spec;
22
   use File::Spec;
-
 
23
   # prepend the bin directory and its parent
16
   use lib File::Spec->catdir($FindBin::Bin);
24
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
17
   eval( 'use library;' );
25
   eval( 'use library;' );
18
   die "Could not find library.pm in the code directory\n" if $@;
26
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
19
   eval( 'use Data::Dumper;' );
-
 
20
}
27
}
21
 
28
 
-
 
29
#####
22
# check for valid OS. 
30
##### Change these to match your needs
-
 
31
#####
-
 
32
 
-
 
33
# 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
-
 
34
my $modulesList = {
23
exit 1 unless &checkOS( { 'linux' => undef } );
35
        'Data::Dumper'     => undef,
-
 
36
   };
24
 
37
 
25
# 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
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
-
 
39
# the full path (from which or where)
26
# script returns a 2
40
my $commandsList = {
-
 
41
        'xl' => undef,
-
 
42
   };
-
 
43
 
-
 
44
# list of operating systems this module can be used on.
-
 
45
my $osList = {
-
 
46
#         'mswin32' => undef,
-
 
47
#         'freebsd' => undef,
-
 
48
         'linux'   => undef,
-
 
49
   };
-
 
50
 
-
 
51
# the category the return data should go into. See sysinfo for a list
-
 
52
my $CATEGORY = 'virtual';
-
 
53
 
-
 
54
#####
-
 
55
##### End of required
-
 
56
#####
-
 
57
 
-
 
58
# some variables needed for our system
-
 
59
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
-
 
60
my @out; # temporary location for each line of output
-
 
61
 
-
 
62
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
27
foreach my $command ( 'xl' ) {
63
for my $module ( keys %$modulesList ) {
-
 
64
   eval ( "use $module;" );
28
   exit 2 unless &validCommandOnSystem( $command );
65
   push @out, "$errorPrepend Could not load $module" if $@;
29
}
66
}
30
 
67
 
31
# category we will use for all values found
-
 
32
# see sysinfo for a list of valid categories
-
 
33
my $CATEGORY = 'xen';
-
 
34
 
-
 
35
# run the commands necessary to do whatever you want to do
-
 
36
# The library entered above has some helper routines
-
 
37
# validCommandOnSystem -- passed a name, returns the fully qualified path or
-
 
38
# '' if it does not exist
-
 
39
# cleanUp - passed a delimiter and a string, does the following (delimiter
68
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
40
# can be '')
-
 
41
#           chomps the string (removes trailing newlines)
69
    push @out, "$errorPrepend Invalid Operating System";
42
#           removes all text BEFORE the delimiter, the delimiter, and any
-
 
43
# whitespace
-
 
44
#           thus, the string 'xxI Am x  a weird string' with a newline will
-
 
45
# become
-
 
46
#           'a weird string' with no newline
-
 
47
 
70
}
48
# now, return the tab delimited output (to STDOUT). $CATEGORY is the first
71
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
49
# item, name as recognized by sysinfo is the second and the value is
72
   push @out, "$errorPrepend Can not find some commands needed";
50
# the last one. For multiple entries, place on separate lines (ie, newline
-
 
51
# separated)
-
 
52
 
-
 
53
my $xl = 'xl';
-
 
54
exit 1 unless $xl;
-
 
55
$xl .= ' list';
-
 
56
 
-
 
57
sub parseOutput {
-
 
58
   my $output = shift;
-
 
59
   my @lines = split( "\n", $output );
-
 
60
   my %domu;
-
 
61
   return ( 'noname' ) unless $lines[0] =~ m/^Name/;
-
 
62
   return ( 'baddomu') unless $lines[1] =~ m/^Domain-0/;
-
 
63
   for ( my $i = 2; $i < @lines; $i++ ) {
-
 
64
      my ( $name,$id,$mem,$vcpu,$state,$time) = split( /\s+/, $lines[$i] );
-
 
65
      $domu{$name}{'id'} = $id;
-
 
66
      $domu{$name}{'memory'} = $mem;
-
 
67
      $domu{$name}{'numcpu'} = $vcpu;
-
 
68
   }
-
 
69
   return \%domu;
-
 
70
}
73
}
-
 
74
if ( !@out ) { # we made it, we have everything, so do the processing
-
 
75
   #####
-
 
76
   ##### Your code starts here. Remember to push all output onto @out
-
 
77
   #####
-
 
78
   
-
 
79
   sub parseXenOutput {
-
 
80
      my $output = shift;
-
 
81
      my @lines = split( "\n", $output );
-
 
82
      my %domu;
-
 
83
      return ( 'noname' ) unless $lines[0] =~ m/^Name/;
-
 
84
      return ( 'baddomu') unless $lines[1] =~ m/^Domain-0/;
-
 
85
      for ( my $i = 2; $i < @lines; $i++ ) {
-
 
86
         my ( $name,$id,$mem,$vcpu,$state,$time) = split( /\s+/, $lines[$i] );
-
 
87
         $domu{$name}{'id'} = $id;
-
 
88
         $domu{$name}{'memory'} = $mem;
-
 
89
         $domu{$name}{'numcpu'} = $vcpu;
-
 
90
      }
-
 
91
      return \%domu;
-
 
92
   }
71
 
93
 
72
my $output = `$xl`;
94
   my $output = `xl list`;
73
my $hier = &parseOutput( $output );
95
   my $hier = &parseXenOutput( $output );
74
 
96
 
75
foreach my $domu ( sort keys %$hier ) {
97
   foreach my $domu ( sort keys %$hier ) {
76
   my $temp = $$hier{$domu};
98
      my $temp = $$hier{$domu};
77
   foreach my $key ( sort keys %$temp ) {
99
      foreach my $key ( sort keys %$temp ) {
78
      print "$CATEGORY\tvirtual\t$domu\t$key\t$$temp{$key}\n";
100
         push @out, "$CATEGORY\tvirtual\t$domu\t$key\t$$temp{$key}";
79
   }
101
      }
80
} # foreach
102
   } # foreach
-
 
103
 
-
 
104
   #####
-
 
105
   ##### Your code ends here.
-
 
106
   #####
-
 
107
}
-
 
108
 
-
 
109
# If we are testing from the command line (caller is undef), print the results for debugging
-
 
110
print join( "\n", @out ) . "\n" unless caller;
-
 
111
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
-
 
112
my $return = join( "\n", @out );
81
 
113
 
82
# if you have not done an exit state above (1 indicating no data), do one
-
 
83
# here (exit 0 indicates success)
-
 
84
# NOTE: you can bail early with exit 1 if you can not process anything
-
 
85
# because it is the wrong system or something
-
 
86
exit 0;
-