File monitoring script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting File monitoring script
# 1  
Old 05-13-2010
File monitoring script

Team,

Attached 2 scripts for your validation(main script,mail script)

Problem description:

When its red it should wait for 10 seconds and then send a mail. If not red it should not send the mail

i have done the below changes in the main script:

Code:
 if [ $DIFF -gt 15 ]
        then
                if [ $DIFF -gt 30 ]
                then
                        COLOR="red"
 echo "<tr><td>$name</td><td> $timeE </td><td> $timeA </td><td bgcolor=$COLOR> $DIFF </td></tr>" >> $OUTFILE
sleep 10 
mail.sh

(I have hashed out the(main script)rest in-order to achieve my desired result)

But the problem is when i run the script with the above modification.
It sends me a mail with a blank(html) format. So.. How do i stop this blank mail.. ?

Request you to please suggest as to how to resolve the problem

Many thanks!

P.S: Please dont treat this as assignment task!

Regards
Whizkidash

Last edited by Franklin52; 05-13-2010 at 07:10 AM.. Reason: Please use code tags!
# 2  
Old 05-15-2010
Guys...

Any try on the below query asked
# 3  
Old 05-15-2010
Code:
        if [ $DIFF -gt 15 ]

        then

                if [ $DIFF -gt 30 ]

                then

                        COLOR="red"
			echo "<tr><td>$name</td><td> $timeE </td><td> $timeA </td><td bgcolor=$COLOR> $DIFF </td></tr>" >> $OUTFILE
			sleep 10 
			mail.sh

                else

                        COLOR="#FF8000"
		        echo "<tr><td>$name</td><td> $timeE </td><td> $timeA </td><td bgcolor=$COLOR> $DIFF </td></tr>" >> $OUTFILE

                fi

        else

                        COLOR="amber"
		        echo "<tr><td>$name</td><td> $timeE </td><td> $timeA </td><td bgcolor=$COLOR> $DIFF </td></tr>" >> $OUTFILE

        fi

# 4  
Old 05-18-2010
File Monitoring script

Thanks mate,


When i do the below changes.

If there are no red entry.. i receive a mail with a blank format.
How do i stop this now..?

Conclusion:I need to receive mail only when there are errors(red).If not then no mail should be sent/received

I hope its more clear now!.


Regards
Whizkidash
# 5  
Old 05-18-2010
I think your code is not very economically phrased. Suppose you want to change the line starting with "echo": how often would you have to apply that change, hm?

As a rule of thumb keep everything out of a control structure which can be left out. Like this:

Code:
if   [ $DIFF -gt 30 ] ; then
     COLOR="red"
elif [ $DIFF -gt 15 ] ; then
     COLOR="#FF8000"
else
     COLOR="amber"
fi
echo "<tr><td>$name</td><td> $timeE </td><td> $timeA </td><td bgcolor=$COLOR> $DIFF </td></tr>" >> $OUTFILE

if [ $DIFF -gt 30 ] ; then
     sleep 10 
     mail.sh
fi

I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Shell script for continuously monitoring log file

Hi I have written below log monitoring script to egrep multiple words and redirect the output to a text file and its working fine but I want to add some more below given functionality to it, which is very advance and im not very good in it, so please help if you can :) I am egrepping all the... (1 Reply)
Discussion started by: scazed
1 Replies

2. UNIX for Beginners Questions & Answers

Monitoring script for Log file

Hi, Iam new to unix , plz help me to write below script. I need to write a script for Monitoring log file when any error occurs it has to send a mail to specified users and it should be always pick latest error not the existing one and the script should be able to send mail all errors (more... (1 Reply)
Discussion started by: vij05
1 Replies

3. Shell Programming and Scripting

Monitoring script for a log file

Hi, I need to get a script working to monitor a log file and throw an alert via mailx as soon as a particular error is encountered. I do not want repeatative email notifications of same error so simply cat logfile and grepping the error would not work. Here is what i planned but it seems... (2 Replies)
Discussion started by: roshan.171188
2 Replies

4. Shell Programming and Scripting

script to mail monitoring output if required or redirect output to log file

Below script perfectly works, giving below mail output. BUT, I want to make the script mail only if there are any D-Defined/T-Transition/B-Broken State WPARs and also to copy the output generated during monitoring to a temporary log file, which gets cleaned up every week. Need suggestions. ... (4 Replies)
Discussion started by: aix_admin_007
4 Replies

5. Shell Programming and Scripting

Help with File Monitoring Script

I am getting errors when I try to run the script I just made, any suggestiongs would be helpful. Please be gentle, Im still a newbie and learning on the go at an entry level position. #!/usr/bin/ksh # PURPOSE: This script is going to view the top 10 largest home directory Folders, then go in each... (11 Replies)
Discussion started by: gkelly1117
11 Replies

6. UNIX for Advanced & Expert Users

ldapsearch in monitoring script without bind password written in script

Hi I do a very simple monitoring of our OpenLDAP (runs in cronjob and generate alerts if unsuccessfull) $ ldapsearch -h hostname.domain -D "cn=monitor_user,ou=People,dc=organisation" -w "password" -b "dc=organisation" -x "(&(cn=monitor_user)(ou=People))" dn | grep -v version dn:... (4 Replies)
Discussion started by: slashdotweenie
4 Replies

7. Shell Programming and Scripting

help needed - log file monitoring script

hi Gurus, Need to pick your brains on this minor script project. I would like to continuously monitor a log file with sample log messages as below, and if PSOldGen percentage is either 99% or 100% for consecutively 10 times, alert someone. {Heap before gc invocations=46516: PSYoungGen ... (6 Replies)
Discussion started by: kenchen722
6 Replies

8. Shell Programming and Scripting

[Solved] File System Monitoring Script

Hello Scripts Guru I had created a shell script to monitor the threshold of the file system, but some where it is not giving the correct output. Request to all to hel me out I am getting the following output /dev/vg00/lvol3 mounted on 1865224 10% / is 2097152% /dev/vg00/lvol1 mounted on... (2 Replies)
Discussion started by: indrajit_renu
2 Replies

9. Shell Programming and Scripting

Shell Script for monitoring File system.

Hi, need help to write one shell script to monitor UNIX file systems and if any changes happend like deletion of any file, adding new file, time stamp changed, permisson changed etc. Script need to send alert mail to defined person/mail id. I request someone to help me to create the... (1 Reply)
Discussion started by: vjauhari
1 Replies

10. Shell Programming and Scripting

file system monitoring script

Hi Does anyone know any website which contains examples of unix system monitoring scripts example? cheers (1 Reply)
Discussion started by: g-e-n-o
1 Replies
Login or Register to Ask a Question