Automatically Email Select Syslog Messages


 
Thread Tools Search this Thread
Operating Systems Solaris Automatically Email Select Syslog Messages
# 8  
Old 11-03-2010
Hi there,

The shell script of my choice is Bash.

Regards, Wynford
# 9  
Old 11-03-2010
The problem with your script is you are reading messages file again from top without ignoring what has been read previously.

You can use the below solution.

Code:
 
while true
do
if [ ! -f /tmp/messages_checked ] ## Copy when executed for the 1st time
then
cp /var/adm/messages /tmp/messages_checked
fi
comm -13 /tmp/messages_checked /var/adm/messages > /tmp/messages_to_check ## Get the messages not checked
egrep 'DUAL-5-NBRCHANGE|IP-4-DUPADDR|STANDBY-3-DUPADDR' /tmp/messages_to_check > /tmp/messages_to_report ## check for needed message patterns
if [ `wc -l /tmp/messages_to_report | awk '{print $1}'` -gt 0 ] ## Will send mail if any pattern match found
then
mailx -s "URGENT : Messages there" <email address> < /tmp/messages_to_report
fi
cp /var/adm/messages /tmp/messages_checked ## Copy the checked messages
sleep 10
done

Cheers
Vishal
This User Gave Thanks to vishalaswani For This Post:
# 10  
Old 11-04-2010
Thanks Vishal, this now works perfectly, thank you Smilie

Regards, Wynford
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash to select oldest folder in directory automatically and log process

The `bash` below uses the oldest folder in the specified directory and logs it. The goes though an analysis process and creates a log. My problem is that if there are 3 folders in the directory folder1,folder2,folder3, the bash is using folder2 for the analysis eventhough folder1 is the oldest... (0 Replies)
Discussion started by: cmccabe
0 Replies

2. UNIX for Dummies Questions & Answers

pine email tool suppress prompt to save read messages

Could somebody please advise about how to configure pine/alpine so that on exit it doesn't prompt me to save read messages? Thanks (3 Replies)
Discussion started by: LeoKSimon
3 Replies

3. Homework & Coursework Questions

program to send messages to parent using pipes and select system call

Write a program using select, which will create some number of child processes that continuously send text messages to the parent process using pipes. Each child has its own pipe that it uses to communicate with the parent. The parent uses select () to decide what pipes should be processed to... (1 Reply)
Discussion started by: ripssingh
1 Replies

4. AIX

Sending an email notification when syslog goes down

Hi All of a sudden the syslog daemon in the server went down and then later I started it manually # ps -ef | grep syslogd root 217228 114906 0 Nov 16 - 0:00 /usr/sbin/syslogd root 430306 290870 0 14:18:11 pts/0 0:00 grep syslogd Can some one help me with a script which will monitor the... (2 Replies)
Discussion started by: newtoaixos
2 Replies

5. Cybersecurity

1000s of undelivered email messages

Hi, My boss has suddenly started receiving 1000s of messages in his inbox. They are undelivered messages that are bouncing back, though the emails weren't coming from him. I guess either these are fake undelivered messages and are just scam emails. Or they are real emails being sent with spoofed... (1 Reply)
Discussion started by: timgolding
1 Replies

6. Shell Programming and Scripting

Automatically select records from several files and then run a C executable file inside the script

Dear list its my first post and i would like to greet everyone What i would like to do is select records 7 and 11 from each files in a folder then run an executable inside the script for the selected parameters. The file format is something like this 7 100 200 7 100 250 7 100 300 ... (1 Reply)
Discussion started by: Gtolis
1 Replies

7. UNIX and Linux Applications

Sending email via syslog-ng

Hi friends I have syslog-ng installed in RHEL5 server, I make it as CEntral log for all servers in my network, Filtered by IP Now What I want to do is make it send to me an email for a specific log for one of my server, In other word when any log sent from this IP (192.168.1.1 ) For... (4 Replies)
Discussion started by: reaky
4 Replies

8. UNIX for Dummies Questions & Answers

How to delete all email messages at ONE time?

These are some of the mail command: Usage: ? print this help message # display message number # - print previous + next (no delete) ! cmd execute cmd <CR> next (no delete) a position at and read... (5 Replies)
Discussion started by: bobo
5 Replies
Login or Register to Ask a Question