Help with Linux hardware fault script in Perl


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help with Linux hardware fault script in Perl
# 1  
Old 03-07-2012
Help with Linux hardware fault script in Perl

Hello,

I am working on a Perl script to run from an AIX Nim server to extract hardware errors from our Linux server using various forms of grep statements -

I have all my hosts in a text file and a command is run from the nim server to each host to pull out data from /var/log/messages and compile it into an email.

I seem to be strruggling with the following line:

Code:
my $errRpt = `ssh $hostname "grep -s -e '$shortDate' -e '$shortDate2' /var/log/messages|egrep -v ssh|egrep -v cron|egrep -v 'su:'|egrep -v warn|egrep -v segfault|egrep -v success|egrep -v syslog|egrep -v passwd|egrep -v usersense|egrep -v -i patrol|egrep -v -m 10 multipath`;

in that I am getting thousands of multipath io messages and only want to print it in my report if it occurs once.

e.g.
Code:
Mar  6 00:00:09 sap7000 multipathd: sdd: tur checker reports path is down
Mar  6 00:00:09 sap7000 multipathd: 360060e80100aec80053026d00000000e: switch to path group #1
Mar  6 00:00:14 sap7000 multipathd: sde: tur checker reports path is down
Mar  6 00:00:14 sap7000 multipathd: sdd: tur checker reports path is down
Mar  6 00:00:14 sap7000 multipathd: 360060e80100aec80053026d00000000e: switch to path group #1
Mar  6 00:00:19 sap7000 multipathd: sde: tur checker reports path is down
Mar  6 00:00:19 sap7000 multipathd: sdd: tur checker reports path is down
Mar  6 00:00:19 sap7000 multipathd: 360060e80100aec80053026d00000000e: switch to path group #1
Mar  6 00:00:24 sap7000 multipathd: sde: tur checker reports path is down
Mar  6 00:00:24 sap7000 multipathd: sdd: tur checker reports path is down


Is there a way I can do this through using egrep/grep? I have been using '-m' option but it doesn't seem to be helping.

i just want my script to produce a report from each server's messages file for those hardware faults but not filling up my mailbox.

Hope that makes sense.

Thanks
Neil.
# 2  
Old 03-07-2012
Don't take this too harshly, but:

Code:
# Parts that are perl
# Parts that are shell

my $errRpt = `ssh $hostname "grep -s -e '$shortDate' -e '$shortDate2' /var/log/messages|egrep -v ssh|egrep -v cron|egrep -v 'su:'|egrep -v warn|egrep -v segfault|egrep -v success|egrep -v syslog|egrep -v passwd|egrep -v usersense|egrep -v -i patrol|egrep -v -m 10 multipath`;

...fully 93% of this is shell code -- literally running in a shell, since perl creates whole, actual shells every time you use a set of backticks. In a large enough program you could be wasting dozens of shell instances.

I, too, used to write perl code like this. Eventually I threw away the perl, since it did nothing but hold together 19 different shells.

Code:
# Line counts of programs of identical function and logic
$ wc -l perl-backup.pl backup.sh
  49 perl-backup.pl
  25 backup.sh

$

Anyway. About your logic, you can also bundle those handfuls of egrep -v's into a single

Code:
egrep -v 'thing1|thing2|thing3|thing4|thing5|...|thing9

I don't think the -m option makes much sense when using -v.

...but grep doesn't have if-then logic. It's not a language. It can't make decisions later about things that happen now.

awk is a language, which can do absolutely all of that:

Code:
nawk -v SD1="$SHORTDATE1" -v SD2="$SHORTDATE2" '
# Ignore things that don't match SD1 and SD2
!((SD1 ~ \$0) || (SD2 ~ \$0)) { next }
# Ignore things that match these strings
/ssh|cronsu:|warn|segfault|success|syslog|passwd|usersense|[Pp][Aa][Tt][Rr][Oo][Ll]/ { next }

/multipathd/ {
        STR=\$0
        # Blank the date fields for easier comparison
        for(N=1; N<=5; N++) \$N=""
        # Skip messages that've happened before
        if(U[\$0]++) next;
        # Put it back
        \$0=STR
}

1' /var/log/messages

All the red backslashes are junk you need to do this in perl, because it will turn awk's $0/$1/etc into its own variables without it. They're not necessary in shell.
# 3  
Old 03-07-2012
Hello,

Thank you for coming back to me and I inherited this perl script to gather our errors onto our Nim server. I will look at combining the egreps together as you suggest and -m option doesnot make any sense so have removed that from my code and will look at your awk code and see if I can adapt it to get what I need.

Thank you and it is much appreciated.
# 4  
Old 03-07-2012
The awk code should be a nearly-exact replacement for what you have, except that it won't repeat messages.

Code:
Mar  6 00:00:09 sap7000 multipathd: sdd: tur checker reports path is down

It ought to look at the highlighted part of the line and not repeat multipath messages with the same content.
# 5  
Old 03-07-2012
You should try awk on linux, most other systems use nawk
# 6  
Old 03-08-2012
Hello,

Thanks for your help so far. I've tried putting the awk script into my Perl routine but I'm not sure if I'm missing something so please forgive my ignorance. This is my Perl code:

#my $errRpt = `ssh $hostname "grep -s -e '$shortDate' -e '$shortDate2' /var/log/messages|egrep -v 'ssh|cr
on|warn|segfault|success|syslog|passwd|usersense|command|patrol' \n"`;
my $errRpt = `ssh $hostname "awk -v SD1='$shortDate' -v SD2='$shortDate2' '
# Ignore things that don't match SD1 and SD2
!((SD1 ~ $0) || (SD2 ~ $0)) { next }
# Ignore things that match these strings
/ssh|cron|warn|segfault|success|syslog|passwd|usersense|[Pp][Aa][Tt][Rr][Oo][Ll]/ { next }
/multipathd/ {
STR=$0
# Blank the date fields for easier comparison
for(N=1; N<=5; N++) $N=""
# Skip messages that've happened before
if(U[$0]++) next;
# Put it back
$0=STR
}
1' /var/log/messages "`;
$errRpt =~ s/$hostname //g;
if ( $errRpt ne "" ) {
$message .= "###############################################\n";
$message .= "## Host $hostname\n";
$message .= "###############################################\n";
$message .= "TIMESTAMP DESCRIPTION\n";
$message .= $errRpt;
$message .= "\n";
}


and running it produces:

# ./test.pl
Global symbol "$N" requires explicit package name at ./test.pl line 74.
Execution of ./test.pl aborted due to compilation errors.
#

If I define $N within the script I still get errors:

# ./test.pl
bash: -c: line 2: syntax error near unexpected token `{'
bash: -c: line 2: `!((SD1 ~ ./test.pl) || (SD2 ~ ./test.pl)) { next }'
#


I am running the script on my AIX nim server which is to ssh onto the various Linux servers running a single command in it's shell - in this case the awk statement.

Can you advise please?

Thanks,
Neil.

---------- Post updated at 06:04 AM ---------- Previous update was at 04:47 AM ----------

Sorry, this is my test within the script:

#my $errRpt = `ssh $hostname "grep -s -e '$shortDate' -e '$shortDate2' /var/log/messages|egrep -v 'ssh|cr
on|warn|segfault|success|syslog|passwd|usersense|command|patrol' \n"`;
my $errRpt = `ssh $hostname "awk -v SD1='$shortDate' -v SD2='$shortDate2' '
# Ignore things that don't match SD1 and SD2
!((SD1 ~ \$0) || (SD2 ~ \$0)) { next }
# Ignore things that match these strings
/ssh|cron|warn|segfault|success|syslog|passwd|usersense|[Pp][Aa][Tt][Rr][Oo][Ll]/ { next }
/multipathd/ {
STR=\$0
# Blank the date fields for easier comparison
for(N=1; N<=5; N++) \$N=""
# Skip messages that've happened before
if(U[\$0]++) next;
# Put it back
\$0=STR
}
1' /var/log/messages "`;

And this is what I get when I run it so not sure if I've got the awk syntax correct within the Perl script.

# ./test.pl
bash: -c: line 2: syntax error near unexpected token `{'
bash: -c: line 2: `!((SD1 ~ sh) || (SD2 ~ sh)) { next }'
#


Thanks
Neil.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Hardware

Does this hardware works with Linux

Hello folks, I pretend acquire this hardware: 1-Motherboard Asus Skt1151 - H110M-A/M.2 (https://www.asus.com/pt/Motherboards...cifications/); 2-Intel i5 6400 2.7Ghz QuadCore Skt1151; or 2-Intel i5 6500 3.2Ghz QuadCore Skt1151; 3-Dimm 8GB DDR4 Kingston CL15 2133Mhz; Obvious I pretend... (1 Reply)
Discussion started by: enodev
1 Replies

2. Debian

Linux, Debian - Segmentation Fault problem.

Hi guys, first of all apologize for my English... I have a big problem with "Segmentation fault", when running my game server. Console: (gdb) bt full #0 0x0000000000000000 in ?? () No symbol table info available. #1 0x00007ffff702aca4 in std::basic_ostream<char,... (1 Reply)
Discussion started by: Arson.
1 Replies

3. Shell Programming and Scripting

Segmentation fault in Unix shell (linux OS)

Hi, I am trying to run an online downloaded tool but I am having an eror segmentation fault. ./multicoil test.seq Config file /home/kmohanas/MULTICOIL/multicoil_config window length 0 = 28 window length 1 = 28 multi_lib = 3 4 5 multi_lib = 2 3 4 pair_lib = 1 2 4 printfile =... (6 Replies)
Discussion started by: kaav06
6 Replies

4. Red Hat

Red Hat linux fault information

Hi, I want to do some fault association analysis in red hat linux. who can tell me where I can get all of the fault information, and the detailed description about this fault information. Thank you very much. (4 Replies)
Discussion started by: zhaoyy
4 Replies

5. UNIX for Dummies Questions & Answers

With Linux do Hardware Brands Matter?

We have run software on Dell Servers w/ Windows and seen the performance degrade overtime. We switched to an IBM server w/ AIX and have not seen the same performance degradation over time. In fact, the IBM servers are at least five years old and continue to preform well at the same level. How... (2 Replies)
Discussion started by: bggibson
2 Replies

6. Ubuntu

Ubuntu 10.04: Sybase with Perl Segmentation Fault

Hi, Operating System: Ubuntu 10.04 Other Packages Installed: freetds,DBI,DBD-Sybase I am trying to connect to SYBASE using perl programming..But the moment I am executing my perl program it throws a SEGMENTATION FAULT error. I have attached strace output for the same... Thanks for... (1 Reply)
Discussion started by: vnkatara
1 Replies

7. UNIX for Dummies Questions & Answers

Linux on custom hardware

I would like to configure a bare minimum Linux with internet browser on a system with Flash & RAM (but no harddisk or any other nonvolatile storage). Please advise. (5 Replies)
Discussion started by: rherb
5 Replies

8. Red Hat

Segmentation fault on basic linux commands

Hello out there!!! I have a Red Hat Entreprise Linux 4 server and I am encountering this error # grep Segmentation Fault I know it is not the right use of grep command, but I did that just for testing purpose,then I did # which grep /bin/grep # ls -l /bin/grep -rwxr-xr-x 1 root... (4 Replies)
Discussion started by: inhaki
4 Replies
Login or Register to Ask a Question