Sponsored Content
Top Forums Shell Programming and Scripting Calculate Time diff in milli milliseconds(Time format : HH:MM:SS,NNN) Post 303014096 by RudiC on Monday 5th of March 2018 06:35:59 AM
Old 03-05-2018
How about
Code:
awk 'function MS(TS) {n=split (TS,TMP, "[:,]"); return ((TMP[1]*60+TMP[2])*60+TMP[3])*1000+TMP[4]} {print $0 "||" MS($8) - MS($1)}' file
15:23:45,255 WARN <NTS>  RouteRequest : 518318 ### 15:23:45,258 CRIT <ISUP> RouteResponse : 518318||3
15:23:45,274 WARN <NTS>  RouteRequest : 518319 ### 15:23:45,278 CRIT <ISUP> RouteResponse : 518319||4
15:23:45,284 WARN <NTS>  RouteRequest : 518320 ### 15:23:45,286 CRIT <ISUP> RouteResponse : 518320||2
15:23:45,294 WARN <NTS>  RouteRequest : 518321 ### 15:23:45,296 CRIT <ISUP> RouteResponse : 518321||2

EDIT: This doesn't work crossing midnight, though.
This User Gave Thanks to RudiC For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

useing date or other time style utility to get milliseconds.

hello everyone. im sure someone has run into the problem of timestamping files and end up haveing 2 files with the same name thus over writeing one of them. In my application i am trying to get a timestamp w/ milliseconds but i am haveing no luck and finding an answer in the man pages. I know... (3 Replies)
Discussion started by: Optimus_P
3 Replies

2. Programming

C time in milliseconds function.

I need a c function which return the time in: hour min sec and mil sec I am writing on unix os. (3 Replies)
Discussion started by: kamil
3 Replies

3. Shell Programming and Scripting

Convert milliseconds to standard time

hello, I have the uptime of the server showing as upTime=2427742050 How do I convert it to standard time. Thanks Chiru (1 Reply)
Discussion started by: chiru_h
1 Replies

4. Shell Programming and Scripting

time diff help

Input file: Tue Oct 21 12:56:35 2008 Started Tue Oct 21 12:56:39 2008 Completed Tue Oct 21 12:57:25 2008 Started Tue Oct 21 12:57:32 2008 Completed Tue Oct 21 12:58:12 2008 Started Tue Oct 21 12:58:50 2008 Completed Output required: Tue Oct 21 12:56:35 2008 Started Tue Oct 21... (2 Replies)
Discussion started by: uwork72
2 Replies

5. Shell Programming and Scripting

Convert Epoch time format to normal date time format in the same file

I have a file named "suspected" with series of line like these : {'protocol': 17, 'service': 'BitTorrent KRPC', 'server': '219.78.120.166', 'client_port': 52044, 'client': '10.64.68.44', 'server_port': 8291, 'time': 1226506312L, 'serverhostname': ''} {'protocol': 17, 'service': 'BitTorrent... (3 Replies)
Discussion started by: rk4k
3 Replies

6. Shell Programming and Scripting

Getting Time in MilliSeconds with Perl

I use something like this in perl to get the date and time: use Time::localtime; use Time::gmtime; $tm = gmtime; $time_str = sprintf "%04d-%02d-%02d %02d:%02d:%02d", $tm->year + 1900, $tm->mon + 1, $tm->mday, $tm->hour, $tm->min, $tm->sec; It gives me something like this: 2010-08-26... (1 Reply)
Discussion started by: lforum
1 Replies

7. Shell Programming and Scripting

How to calculate time difference between start and end time of a process!

Hello All, I have a problem calculating the time difference between start and end timings...! the timings are given by 24hr format.. Start Date : 08/05/10 12:55 End Date : 08/09/10 06:50 above values are in mm/dd/yy hh:mm format. Now the thing is, 7th(08/07/10) and... (16 Replies)
Discussion started by: smarty86
16 Replies

8. Shell Programming and Scripting

Calculate age of a file | calculate time difference

Hello, I'm trying to create a shell script (#!/bin/sh) which should tell me the age of a file in minutes... I have a process, which delivers me all 15 minutes a new file and I want to have a monitoring script, which sends me an email, if the present file is older than 20 minutes. To do... (10 Replies)
Discussion started by: worm
10 Replies

9. Shell Programming and Scripting

calculate time from a given format

Hi i have a file which consists of the time records in following format H:MM:SS.sss 0:00:09.249 0:00:00.102 0:00:00.105 0:00:08.499 0:00:08.499 0:00:06.980 0:00:04.249 0:00:05.749 0:00:00.108 0:00:00.107 0:00:03.014 0:00:00.000 I need to calculate their equivalent milliseconds... (3 Replies)
Discussion started by: vaibhavkorde
3 Replies

10. Solaris

Process execution time in milliseconds

Hey everyone, I'm coming from Linux where the top command gave me lots of process info (particularly CPU time in milliseconds) and I'm trying to find similar info in Solaris. So far I've looked at prstat and ps but neither give cpu time in milliseconds, both seem to have 1 second... (2 Replies)
Discussion started by: maniac_ie
2 Replies
Util::TimeTracker(3pm)					User Contributed Perl Documentation				    Util::TimeTracker(3pm)

NAME
Log::Log4perl::Util::TimeTracker - Track time elapsed SYNOPSIS
use Log::Log4perl::Util::TimeTracker; my $timer = Log::Log4perl::Util::TimeTracker->new(); # equivalent to Time::HiRes::gettimeofday(), regardless # if Time::HiRes is present or not. my($seconds, $microseconds) = $timer->gettimeofday(); # reset internal timer $timer->reset(); # return milliseconds since last reset $msecs = $timer->milliseconds(); # return milliseconds since last call $msecs = $timer->delta_milliseconds(); DESCRIPTION
This utility module helps tracking time elapsed for PatternLayout's date and time placeholders. Its accuracy depends on the availability of the Time::HiRes module. If it's available, its granularity is milliseconds, if not, seconds. The most common use of this module is calling the gettimeofday() method: my($seconds, $microseconds) = $timer->gettimeofday(); It returns seconds and microseconds of the current epoch time. If Time::HiRes is installed, it will simply defer to its gettimeofday() function, if it's missing, time() will be called instead and $microseconds will always be 0. To measure time elapsed in milliseconds, use the reset() method to reset the timer to the current time, followed by one or more calls to the milliseconds() method: # reset internal timer $timer->reset(); # return milliseconds since last reset $msecs = $timer->milliseconds(); On top of the time span between the last reset and the current time, the module keeps track of the time between calls to delta_milliseconds(): $msecs = $timer->delta_milliseconds(); On the first call, this will return the number of milliseconds since the last reset(), on subsequent calls, it will return the time elapsed in milliseconds since the last call to delta_milliseconds() instead. Note that reset() also resets the time of the last call. The internal timer of this module gets its time input from the POSIX time() function, or, if the Time::HiRes module is available, from its gettimeofday() function. To figure out which one it is, use if( $timer->hires_available() ) { print "Hooray, we get real milliseconds! "; } else { print "Milliseconds are just bogus "; } For testing purposes, a different time source can be provided, so test suites can simulate time passing by without actually having to wait: my $start_time = time(); my $timer = Log::Log4perl::Util::TimeTracker->new( time_function => sub { return $start_time++; }, ); Every call to $timer->epoch() will then return a time value that is one second ahead of the the value returned on the previous call. This also means that every call to delta_milliseconds() will return a value that exceeds the value returned on the previous call by 1000. COPYRIGHT AND LICENSE
Copyright 2002-2009 by Mike Schilli <m@perlmeister.com> and Kevin Goess <cpan@goess.org>. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-07-21 Util::TimeTracker(3pm)
All times are GMT -4. The time now is 05:38 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy