Observing two logs at same time


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Observing two logs at same time
# 8  
Old 05-16-2012
I am not hiding the "magic solution" from you. I don't know a simple one-shot tool to do what you want. Stop demanding it. Maybe I can find a combination of things which does.

I am trying to help you, but you refuse to answer any of my questions -- not the ones about screen, and now not the ones about your file contents -- so I can't.

Please answer my questions.
# 9  
Old 05-16-2012
Quote:
Originally Posted by Corona688
I am not hiding the "magic solution" from you. I don't know a simple one-shot tool to do what you want. Stop demanding it.

I am trying to help you, but you refuse to answer any of my questions -- not the ones about screen, and now not the ones about your file contents -- so I can't.

Please answer my questions.
I have two log files
/usr/local/abc.log
/var/local/bcf.log

I see them by opening two instances of putty, i want to see both of them through single putty , that the simple question I have ..will multitail command help me or not..!!the file only conataions logs of the application that what events were happened at backend only
# 10  
Old 05-16-2012
I can't help you if you don't start answering my questions.

1) Do you have screen installed
2) What do your logfiles look like

I've never heard of "multitail". You could try it if you found such a thing and have it installed. I suspect you'd need to install it.
# 11  
Old 05-16-2012
Quote:
Originally Posted by Corona688
I can't help you if you don't start answering my questions.

1) Do you have screen installed
2) What do your logfiles look like
Answers

No , Screens are not installed
log files have logs in it as the normal logs files are
# 12  
Old 05-16-2012
# 13  
Old 05-16-2012
Quote:
Originally Posted by KAREENA18
log files have logs in it as the normal logs files are
That's the vaguest and least helpful answer I've heard from you yet. You know what I'm asking and just aren't doing it.

I'm done with this thread.
# 14  
Old 05-16-2012
Not sure what OS your backends are running, but you can use the normal tail command to view multiple logs:

Code:
tail -f /usr/local/abc.log /var/tt/bce.log

Hope this helps.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Help with Capturing time from Autosys logs

Hi Guys, I'm very new to Shell scripting and have to design a code which I'm not able to find a way to. I will try to explain the aim in detail and shall be obliged if anyone could help me with the coding snippet. I have an input file who's every row has a few details about an autosys Job. I shall... (1 Reply)
Discussion started by: Crusnik02
1 Replies

2. Shell Programming and Scripting

Help in capturing Time from Autosys Logs

Hi Guys, I'm very new to Shell scripting and have to design a code which I'm not able to find a way to. I will try to explain the aim in detail and shall be obliged if anyone could help me with the coding snippet. I have an input file who's every row has a few details about an autosys Job. I shall... (0 Replies)
Discussion started by: Crusnik02
0 Replies

3. Shell Programming and Scripting

How to extract logs between the current time and the last 15 minutes ?

I want to extract the logs between the current time stamp and 15 minutes before and sent an email to the people configured. I developed the below script but it's not working properly; can someone help me?? I have a log file containing this pattern: Constructor QuartzJob ... (3 Replies)
Discussion started by: puneetkhullar
3 Replies

4. Shell Programming and Scripting

Logs between two time stamp

I am creating log monitoring script and stuck up to get the logs between two time stamp. can you please help me to create the script to get the logs between two time stamp, for example, I need the complete logs between # Time: 150328 1:30:10 and # Time: 150328 19:10:57 OS : Cent OS 6.x... (8 Replies)
Discussion started by: zenkarthi
8 Replies

5. Shell Programming and Scripting

Collecting logs between two time stamps

Hi, please help me to collect the entire log files between two time stamp. for example, I am looking script to collect the entire log between "2015-03-27 15:59" to "2015-03-27 16:15" in the below sample log file. OS : RHEL 6.3 Date/Time : 24 hours format, the time is printing each log... (12 Replies)
Discussion started by: jerryknj
12 Replies

6. Shell Programming and Scripting

How to get the Logs between two Time Stamps?

Hi, I have been working on the error Log script, where errors are pulled from server. I need to pull the data of the error logs between two dates & time, for example : 22/12/2014 20:00:00 22/12/2014 22:00:00 Whatever error have came during this duration. Now the question is the record... (6 Replies)
Discussion started by: amitgpta90
6 Replies

7. Shell Programming and Scripting

How to collect the logs with in two time stamp ?

Hi Gurus I need to collect the logs between two time stamp... The log files 12 hours format (ex- Nov 14, 2013 12:10:16 AM UTC) I tried the below commands but no luck. awk '$0 >= "Nov 14, 2013 9:40:01" && $0 <= "Nov 14, 2013 9:55:01"' file sed -n '/Nov 14, 2013 7:58:00 PM UTC/,/Nov 14, 2013... (5 Replies)
Discussion started by: zenkarthi
5 Replies

8. Shell Programming and Scripting

Looking into the recent time logs

Hi Folks, I have to monitor a several logs file which I do mostly by tails -f command but now I want that when i tail the logs it should show me the logs of 10 mins before as I do not want to see the logs of all the time which are even 1 hour old i, i just want to see the latest logs of 20... (1 Reply)
Discussion started by: punpun66
1 Replies

9. Linux

search on weblogic logs with date time ranges

Hi All, The developers want me to search and capture the weblogic log, you know this big logs of htmls. They want to me to have ranges on the date and time. Like from "2010-01-20 14:04:46,186" to "2010-01-20 15:00:12,490" I can only do this, cat /usr/local/bea/logs_prod1/debug.log... (1 Reply)
Discussion started by: itik
1 Replies

10. Shell Programming and Scripting

search on weblogic logs with date time ranges 2

Hi All, The developers want me to search and capture the weblogic log, you know this big logs of htmls. They want to me to have ranges on the date and time. Like from "2010-01-20 14:04:46,186" to "2010-01-20 15:00:12,490" I can only do this, cat /usr/local/bea/logs_prod1/debug.log |... (1 Reply)
Discussion started by: itik
1 Replies
Login or Register to Ask a Question