Subversion Repositories camp_sysinfo_client_3

Rev

Rev 198 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
189 rodolico 1
#!/usr/bin/env perl
2
use warnings;
3
use strict;
4
 
190 rodolico 5
# Description: Processes libvirt Clients
189 rodolico 6
 
7
our $VERSION = '1.0';
8
 
190 rodolico 9
# Looks at various libvirt information about running virtuals
10
# Written by RWR and BNR, 20210228
189 rodolico 11
 
251 rodolico 12
# find our location and use it for searching for libraries
189 rodolico 13
BEGIN {
251 rodolico 14
   use FindBin;
15
   use File::Spec;
16
   use lib File::Spec->catdir($FindBin::Bin);
17
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
18
   eval( 'use Data::Dumper;' );
189 rodolico 19
}
20
 
251 rodolico 21
# check for valid OS. 
22
exit 1 unless &checkOS( { 'linux' => undef } );
189 rodolico 23
 
251 rodolico 24
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
25
# script returns a 2
26
foreach my $command ( 'virsh' ) {
27
   exit 2 unless &validCommandOnSystem( $command );
28
}
29
 
30
 
189 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 = 'virsh';
190 rodolico 54
# print "My command is $xl\n";
55
exit 1 unless $xl;
56
$xl .= ' list';
57
# print "My command is $xl\n";
58
# die;
189 rodolico 59
 
60
sub parseOutput {
61
   my $output = shift;
62
   my @lines = split( "\n", $output );
63
   my %domu;
190 rodolico 64
   return ( 'noname' ) unless $lines[0] =~ m/^\s*id\s+name\s+state\s*$/i;
189 rodolico 65
   for ( my $i = 2; $i < @lines; $i++ ) {
190 rodolico 66
#      print "Working on $i, value is {$lines[$i]}\n";
67
      $lines[$i] =~ s/^\s*//;
68
#      print "After cleanup, value is {$lines[$i]}\n";
69
      my ( $id,$name ) = split( /\s+/, $lines[$i] );
70
      $domu{$name}{'id'} = $id;
189 rodolico 71
   }
72
   return \%domu;
73
}
74
 
190 rodolico 75
my $output = `$xl`;
76
 
77
#print $output;
78
#die;
79
 
189 rodolico 80
my $hier = &parseOutput( $output );
81
 
190 rodolico 82
#die;
83
 
189 rodolico 84
foreach my $domu ( sort keys %$hier ) {
85
   my $temp = $$hier{$domu};
86
   foreach my $key ( sort keys %$temp ) {
87
      print "$CATEGORY\tvirtual\t$domu\t$key\t$$temp{$key}\n";
88
   }
89
} # foreach
90
 
91
# if you have not done an exit state above (1 indicating no data), do one
92
# here (exit 0 indicates success)
93
# NOTE: you can bail early with exit 1 if you can not process anything
94
# because it is the wrong system or something
95
exit 0;