Subversion Repositories camp_sysinfo_client_3

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
153 rodolico 1
#!/usr/bin/env perl
2
use warnings;
3
use strict;  
4
 
5
# Description: Power Sensors for ipmi enabled servers
6
# IPMI power module for sysinfo client
7
# Author: R. W. Rodolico
8
# Date:   2020-01-27
203 rodolico 9
#
10
# v1.1 RWR 20230205
11
# cleaned up the detection for if we do not have driver installed on this system
12
# ie, binary only, probably to connect to other machines
153 rodolico 13
 
14
 
203 rodolico 15
our $VERSION = '1.1';
16
 
251 rodolico 17
# find our location and use it for searching for libraries
153 rodolico 18
BEGIN {
251 rodolico 19
   use FindBin;
20
   use File::Spec;
21
   use lib File::Spec->catdir($FindBin::Bin);
22
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
23
   eval( 'use Data::Dumper;' );
153 rodolico 24
}
25
 
251 rodolico 26
# check for valid OS. 
27
exit 1 unless &checkOS( { 'linux' => undef, 'freebsd' => undef } );
153 rodolico 28
 
251 rodolico 29
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
30
# script returns a 2
31
foreach my $command ( 'ipmitool' ) {
32
   exit 2 unless &validCommandOnSystem( $command );
33
}
34
 
153 rodolico 35
# category we will use for all values found
36
# see sysinfo for a list of valid categories
37
my $CATEGORY = 'system';
38
 
39
# run the commands necessary to do whatever you want to do
40
# The library entered above has some helper routines
41
# validCommandOnSystem -- passed a name, returns the fully qualified path or
42
# '' if it does not exist
43
# cleanUp - passed a delimiter and a string, does the following (delimiter
44
# can be '')
45
#           chomps the string (removes trailing newlines)
46
#           removes all text BEFORE the delimiter, the delimiter, and any
47
# whitespace
48
#           thus, the string 'xxI Am x  a weird string' with a newline will
49
# become
50
#           'a weird string' with no newline
51
 
52
# now, return the tab delimited output (to STDOUT). $CATEGORY is the first
53
# item, name as recognized by sysinfo is the second and the value is
54
# the last one. For multiple entries, place on separate lines (ie, newline
55
# separated)
56
 
57
# check for commands we want to run
58
my %commands = ( 
59
                  'ipmitool' => ''
60
               );
61
 
62
# check the commands for validity
63
foreach my $command ( keys %commands ) {
64
   $commands{$command} = &validCommandOnSystem( $command );
65
}
66
 
67
# bail if we don't have the commands we need
68
exit 1 unless $commands{'ipmitool'};
69
 
203 rodolico 70
# some systems have ipmitool installed simply for managing other machines
71
# but do not have ipmi themselves
72
exit 2 unless -e '/dev/ipmi0' || -e '/dev/ipmi/0' || -e '/dev/ipmidev/0';
73
 
153 rodolico 74
my @temp = qx( $commands{'ipmitool'} sensor 2>/dev/null );
75
exit 2 unless @temp; # ipmitool installed, but driver not. Probably using to connect someplace else.
76
chomp @temp;
77
 
78
my @current;
79
my @voltage;
80
my @power;
81
my $power = 0;
82
my $i;
83
 
84
while ( my $line = shift @temp ) {
85
   chomp $line;
86
   my @fields = split( /\s*\|\s*/, $line );
87
   next if $fields[1] eq 'na';
88
   if ( $fields[0] =~ /Current.*\d*/ ) {
89
      push @current, $fields[1];
90
      print "$CATEGORY\tPower $fields[0]\t$fields[1] $fields[2]\n";
91
   } elsif ( $fields[0] =~ /Voltage.*\d*/ ) {
92
      push @voltage, $fields[1];
93
      print "$CATEGORY\tPower $fields[0]\t$fields[1] $fields[2]\n";
94
   } elsif ( $fields[0] =~ m/Power Supply.*\d*/ && $fields[2] eq 'Watts' ) {
95
      push @power, $fields[1];
96
      print "$CATEGORY\t$fields[0] Draw\t$fields[1] $fields[2]\n";
97
   } elsif ( $fields[0] eq 'Power Meter' ) {
98
      print "$CATEGORY\tPower Draw\t$fields[1] $fields[2]\n";
99
      exit;
100
   }
101
}
102
 
103
for ( $i = 0; $i < @current; $i++ ) {
104
   $power += $current[$i] * $voltage[$i];
105
}
106
 
107
for ( $i = 0; $i < @power; $i++ ) {
108
   $power += $power[$i];
109
}
110
 
111
print "$CATEGORY\tPower Draw\t$power Watts\n" if $power;
112
 
113
exit 0;