Monitor log entries in log files with no Date format? - Efficient logcheck?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Monitor log entries in log files with no Date format? - Efficient logcheck?
# 1  
Old 12-21-2012
Monitor log entries in log files with no Date format? - Efficient logcheck?

is there a way to efficiently monitor logfiles that do not have a date or time format? i have several logs on several different servers that need to be monitored. but i realized writing a script for this would be very complex and time consuming giving the variety of things i need to check for i.e. check if log file exist, check if log has read permissions, check strings, etc.

i know log file monitoring is essential on basically all UNIX systems. my question is, what method are some of you using, and which ones are the easiest to set up and use? and to go back to my first question, how do you monitor the logs that simply do not have a date and time in them?

OS: linux, sunos, hpux, aix
bash/sh
# 2  
Old 12-21-2012
It totally depends on what exactly you want to monitor in your log file. Here is one approach that I want to suggest:-

E.g. if you want to monitor a log for any new occurrence of an exception or error message and it does not have date and time information, then you can go by line number. Each time script find an exception or error message it logs it to a file with date, time & line number information and script uses this file content, compares it during its next run to identify another occurrence.

Last edited by Yoda; 12-21-2012 at 02:12 PM..
This User Gave Thanks to Yoda For This Post:
# 3  
Old 12-21-2012
Quote:
Originally Posted by bipinajith
It totally depends on what exactly you want to monitor in your log file. Here is one approach that I want to suggest:-

E.g. if you want to monitor a log for any new occurrence of an exception or error message and it does not have date and time information, then you can go by line number. Each time script find an exception or error message it logs it to a file with date, time & line number information and script uses this file content, compares it during its next run to identify another occurrence.
thank you so much for the suggestion! i've searched everywhere on this, but there doesn't appear to be a simple straight forward solution. i'm going to have to write something. thanks again!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Changing Date format for su log

Need to view su log with year in the time stamp. Only mm/dd format is showing up in the logs. Any help please ..:( (2 Replies)
Discussion started by: Chandru1
2 Replies

2. UNIX for Dummies Questions & Answers

Rename all Files in a UNIX Directory from one date format to another date format

Hi Unix Gurus, I would like to rename several files in a Unix Directory . The filenames can have more than 1 underscore ( _ ) and the last underscore is always followed by a date in the format mmddyyyy. The Extension of the files can be .txt or .pdf or .xls etc and is case insensitive ie... (1 Reply)
Discussion started by: pchegoor
1 Replies

3. Shell Programming and Scripting

Delete log files content older than 30 days and append the lastest date log file date

To delete log files content older than 30 days and append the lastest date log file date in the respective logs I want to write a shell script that deletes all log files content older than 30 days and append the lastest log file date in the respective logs This is my script cd... (2 Replies)
Discussion started by: sreekumarhari
2 Replies

4. HP-UX

Script to monitor /var/opt/resmon/log/event.log file

AM in need of some plugin/script that can monitor HP-UX file "/var/opt/resmon/log/event.log" . Have written a scrip in sh shell that is working fine for syslog.log and mail.log as having standard format, have interrogated that to Nagios and is working as I required . But same script failed to... (3 Replies)
Discussion started by: Shirishlnx
3 Replies

5. Shell Programming and Scripting

Tomcat log file in date format

Hi, I was asked to write a new logrotate file for tomcat logs..in which one of the requirement is to have date and time appended at the end of the file name. I have tried dateext and dateformat-%Y-%m-%d-%s but these directives didn't have the option for HH:MM. I am very new to this... (2 Replies)
Discussion started by: sdspawankumar
2 Replies

6. Shell Programming and Scripting

Write an automated shell program(s) that can create, monitor the log files and report the issues for

Hi , Please help me getting this done. Write an automated shell program(s) that can create, monitor the log files and report the issues for matching pattern. (i) Conditions for creating log files. Log file is created with date (example 2010_03_27.log). If the log file size is 10 Mb for... (1 Reply)
Discussion started by: itian2010
1 Replies

7. Homework & Coursework Questions

monitor log entries and send e-mail

I am stuck and worried. My assignment was due a day ago and I was too busy completing other assignments due during the same time. I worry that not completing this assignment will fail me. Need urgent help in completing the script asap. I dont want to sound pushy to get the answer but just wanted to... (10 Replies)
Discussion started by: vin8465
10 Replies

8. Emergency UNIX and Linux Support

monitor log entries and send e-mail

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! I am stuck and worried. My assignment was due a day ago and I was too busy completing other assignments due during the same time. I worry that not completing this assignment... (1 Reply)
Discussion started by: vin8465
1 Replies

9. Shell Programming and Scripting

monitor log files

Hello, I want something like this tail -f /a/b/c/*.log | grep -i "STRING1|STRING2 " > a.txt I want to check all the log files in a particular directory then grep if any of the log files have "STRING1" and "STRING2" string and then have to send email to the group. Platform is HP-UX it... (8 Replies)
Discussion started by: RTY
8 Replies

10. Shell Programming and Scripting

convert date format to mysql date format in log file

I have a comma delimited log file which has the date as MM/DD/YY in the 2nd column, and HH:MM:SS in the 3rd column. I need to change the date format to YYYY-MM-DD and merge it with the the time HH:MM:SS. How will I got about this? Sample input 02/27/09,23:52:31 02/27/09,23:52:52... (3 Replies)
Discussion started by: hazno
3 Replies
Login or Register to Ask a Question