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
25 rodolico 1
#!/usr/bin/env perl
2
use warnings;
3
use strict;
4
 
37 rodolico 5
# Description: Processes Xen Clients
25 rodolico 6
 
37 rodolico 7
our $VERSION = '1.1';
8
 
25 rodolico 9
# Looks at various Xen parameters, mainly which DOMU's are running on it
10
# Written by RWR, 20160911
11
 
251 rodolico 12
# find our location and use it for searching for libraries
25 rodolico 13
BEGIN {
251 rodolico 14
   use FindBin;
15
   use File::Spec;
16
   use lib File::Spec->catdir($FindBin::Bin);
17
   eval( 'use library;' );
18
   die "Could not find library.pm in the code directory\n" if $@;
19
   eval( 'use Data::Dumper;' );
25 rodolico 20
}
21
 
251 rodolico 22
# check for valid OS. 
23
exit 1 unless &checkOS( { 'linux' => undef } );
25 rodolico 24
 
251 rodolico 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
26
# script returns a 2
27
foreach my $command ( 'xl' ) {
28
   exit 2 unless &validCommandOnSystem( $command );
29
}
30
 
25 rodolico 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
40
# can be '')
41
#           chomps the string (removes trailing newlines)
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
 
48
# now, return the tab delimited output (to STDOUT). $CATEGORY is the first
49
# item, name as recognized by sysinfo is the second and the value is
50
# the last one. For multiple entries, place on separate lines (ie, newline
51
# separated)
52
 
251 rodolico 53
my $xl = 'xl';
25 rodolico 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
}
71
 
72
my $output = `$xl`;
73
my $hier = &parseOutput( $output );
74
 
75
foreach my $domu ( sort keys %$hier ) {
76
   my $temp = $$hier{$domu};
77
   foreach my $key ( sort keys %$temp ) {
78
      print "$CATEGORY\tvirtual\t$domu\t$key\t$$temp{$key}\n";
79
   }
80
} # foreach
81
 
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;