Newbie looking for how to Grep times more than 10 seconds apart


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Newbie looking for how to Grep times more than 10 seconds apart
# 15  
Old 09-18-2016
Quote:
Originally Posted by Markham
Don,

I appreciate all the effort that you went to and I now see that his code did not work.

I tried your last suggestion and it is getting results for times less than 10 seconds.

I must be doing something wrong.

Mark
My guess would be that you are getting the wrong results because the data format has changed, but we can't know what went wrong if you do not show us an example of in input line for which my last suggestion gave you the wrong results.
# 16  
Old 09-18-2016
Don,

Can send me a Private Message so that I can share things with you in private?

Mark
# 17  
Old 09-18-2016
Mark,
Forum rules prohibit hiding technical discussions in private e-mail. Hiding technical conversations in private e-mail hides details about this public conversation from everyone else reading this thread and keeps you from getting input from others on this forum who may be able to provide you with a working solution. In addition to that, I am obviously unable to speak in a language you understand. Maybe someone else seeing our continued discussion will be able to help you much better than I have been able to do.

The request is very simple: Show us sample input for which the script I suggested (or the script Scrutinizer suggested) does not produce the correct output.
# 18  
Old 09-18-2016
Don,

The reason is that we use some information in our logs that is not to be made visible to the public. I will try to obfuscate the data so that the content is valid but the data itself is still private.

---------- Post updated at 07:15 PM ---------- Previous update was at 07:13 PM ----------

Don,

Here is the data:

Code:
2016-09-17 10:30:36  INFO: [D3B4AEB3] id: 4562079193, time: 2016-09-17 10:30:35, lat: 51.00000, lon: -112.00000, speed: 64.3, course: 130.0
2016-09-17 10:30:57  INFO: [D3B4AEB3] id: 4562079216, time: 2016-09-17 07:30:55, lat: 51.00000, lon: -112.00000, speed: 0.0, course: 0.0
2016-09-17 10:30:57  INFO: [D3B4AEB3] id: 4562079216, time: 2016-09-17 10:30:55, lat: 51.00000, lon: -112.00000, speed: 0.0, course: 0.0
2016-09-17 10:31:16  INFO: [D3B4AEB3] id: 4562079193, time: 2016-09-17 10:31:15, lat: 51.00000, lon: -112.00000, speed: 64.3, course: 130.0

---------- Post updated at 07:18 PM ---------- Previous update was at 07:15 PM ----------

I did not want to undermine the great benefits of this forum nor to make anyone feel that there was a language difference. I wanted to protect some data that contained sensitive information.

Mark

Last edited by Don Cragun; 09-18-2016 at 08:22 PM.. Reason: Add CODE tags.
# 19  
Old 09-18-2016
Quote:
Originally Posted by Markham
Don,

The reason is that we use some information in our logs that is not to be made visible to the public. I will try to obfuscate the data so that the content is valid but the data itself is still private.
Hi Mark,
You should not be sending company private data outside of your company to this forum or to me. Obfuscated data is fine, but we do need to see the actual format of your data. If the data you showed us in earlier posts was not representative of your actual data, there is a very low chance that the code we provided to work on your sample data will work on your actual data.

Don
# 20  
Old 09-18-2016
Quote:
Originally Posted by Don Cragun
Hi Mark,
You should not be sending company private data outside of your company to this forum or to me. Obfuscated data is fine, but we do need to see the actual format of your data. If the data you showed us in earlier posts was not representative of your actual data, there is a very low chance that the code we provided to work on your sample data will work on your actual data.

Don

Don,

I thought that any other data on the line would not be an issue. I would never provide any of the sensitive data, but wanted to try to keep as much of it out of public scrutiny.

I deeply apologize for these actions.

I provided obfuscated data above this post and probably when you were responding.

See above.

Mark
# 21  
Old 09-18-2016
In your earlier samples, the timestamps were in the 2nd field on a line and on the last field on a line. With your new data, the starting timestamp is not even close to being in the last field on the input line. If the timestamps are in the 2nd and 9th fields (with fields separated by sequences of one or more space or tab characters), the following should work:
Code:
awk '
{	split($2, t, ":")
	e = t[1] * 3600 + t[2] * 60 + t[3]
	split($9, t, ":")
	s = t[1] * 3600 + t[2] * 60 + t[3]
}
e - s > 10
' Example2

producing the output:
Code:
2016-09-17 10:30:57  INFO: [D3B4AEB3] id: 4562079216, time: 2016-09-17 07:30:55, lat: 51.00000, lon: -112.00000, speed: 0.0, course: 0.0

with your new sample data.

And, please go back and look at that tutorial on how to post threads in the UNIX & Linux Forums and how to use CODE tags. There is absolutely nothing in there about using UNIX commands; only about how to format posts submitted to this forum in a manner that will allow people reading your posts to see leading spaces and tabs in the sample input, output, and code you show us and to see the difference between single spaces and sequences of spaces and tabs in the sample input, output, and code that you show us.

Don

Last edited by Don Cragun; 09-18-2016 at 08:54 PM.. Reason: Fix typo: s/you new/your new/
These 2 Users Gave Thanks to Don Cragun For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Problem with implementing the times() function in C (struct tms times return zero/negative values)

Hello, i'm trying to implement the times() function and i'm programming in C. I'm using the "struct tms" structure which consists of the fields: The tms_utime structure member is the CPU time charged for the execution of user instructions of the calling process. The tms_stime structure... (1 Reply)
Discussion started by: g_p
1 Replies

2. HP-UX

grep for x for m times ',\{11\}'

All: OS version HP-UX ga016a501 B.11.31 U ia64 from the command prompt -grep for 1 to 11 occurences of "," returns both rows from the command prompt -grep for 11 occurences of "," returns 0 rows - should be 1 row. Any ideas - why? ga016a501 -> grep ',\{1,11\}' test3 | more ... (7 Replies)
Discussion started by: Bill L.
7 Replies

3. Shell Programming and Scripting

perl newbie . &&..programming newbie

Hi, I am new to programming and also to perl..But i know 'perl' can come to my rescue, But I am stuck at many places and need help..any small help is much appreciated... below is the description of what i intend to acheive with my script. I have a files named in this format... (13 Replies)
Discussion started by: xytiz
13 Replies

4. Shell Programming and Scripting

perl newbie . &&..programming newbie (question 2)

Hello everyone, I am having to do a lot of perl scripting these days and I am learning a lot. I have this problem I want to move files from a folder and all its sub folders to one parent folder, they are all .gz files.. there is folder1\folder2\*.gz and there are about 50 folders... (1 Reply)
Discussion started by: xytiz
1 Replies

5. UNIX for Dummies Questions & Answers

UNIX newbie NEWBIE question!

Hello everyone, Just started UNIX today! In our school we use solaris. I just want to know how do I setup Solaris 10 not the GUI one, the one where you have to type the commands like ECHO, ls, pwd, etc... I have windows xp and I also have vmware. I hope I am not missing anything! :p (4 Replies)
Discussion started by: Hanamachi
4 Replies

6. UNIX for Dummies Questions & Answers

Newbie Help with Grep or Awk .. Easy one ...

I have this output: uniquemember=uid=315kthatch,ou=people,ou=client315,dc=paisleyhosting,dc=com and i want the output to be just this: 315kthatch I need it to be generic tho, because I have hundreds of lines of output, and the preceding numbers are not always 315. So I would need... (3 Replies)
Discussion started by: kthatch
3 Replies

7. AIX

how would you know your server was rebooted 3 times or 5 times

Is there such location or command to know how many times did you reboot your server in that particular day?in AIX. (3 Replies)
Discussion started by: kenshinhimura
3 Replies

8. UNIX for Dummies Questions & Answers

Simple newbie grep question

How come grep testfile1 won't find anything in testfile1 (even though the characters sd are there in great quantity), but grep '' testfile1 will find plenty? Do the single quotes prevent the shell from interpreting the testfile1 is interpreted as: grep *test whether or not characters sd exist*... (5 Replies)
Discussion started by: doubleminus
5 Replies

9. Shell Programming and Scripting

GREP Searching for a newbie...

Hi, I really need some help with GREP searching... I need to find all occurances of a file reference and remove two characters from the end of the reference. For example, here are a few lines showing the text: <image file="STRAIGHT_004CR.jpg" ALT="STRAIGHT_004CR.jpg" /> <image... (8 Replies)
Discussion started by: steveglevin
8 Replies

10. AIX

grep to give how many times each lines were found

Lets say I have a file containing string patterns to be looked for inside a file. I would normaly do : grep -if MyFilePattern FiletoSearchInto if I use the -c it gives how many total lines it found out of my whole pattern file, but what if i want grep to report how many times it found each... (4 Replies)
Discussion started by: Browser_ice
4 Replies
Login or Register to Ask a Question