Sponsored Content
Operating Systems Solaris Process execution time in milliseconds Post 302531611 by maniac_ie on Friday 17th of June 2011 09:23:09 AM
Old 06-17-2011
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 as the time granularity.

Is there a way to get millisecond time granularity from the prstat or
ps command in Solaris or is there some other command I should use? Im
using Solaris 10 8/07 s10x_u4wos_12b X86.

Cheers!

Rob
 

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. Programming

execution time

hi , i ve coded a C program in that im using malloc dynamically , it is being called many times in the program The program is to simulate jobs in manufacturing system. the execution time is increasing drastically as the number of jobs are increased. could any body tel what may be the problem... (2 Replies)
Discussion started by: ramki_rk
2 Replies

4. 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

5. UNIX for Advanced & Expert Users

specifying an execution time

Hi all, do ny o u'll know how to set a particular execution time for a program??? for eg.: --> during the execution of a file, i call a certain other function. --> while calling this function, my comp hangs. now is there ny way in which i can go to the nxt line of code by aborting the call... (7 Replies)
Discussion started by: VGR
7 Replies

6. UNIX for Dummies Questions & Answers

how to Decrease priority of a particular process in time of process creation

how to decrease priority of a particular process in time of process creation... and also how to decrease priority of a particular process after process creation.. can any one please help me out... (2 Replies)
Discussion started by: Ramkum
2 Replies

7. 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

8. 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

9. UNIX for Dummies Questions & Answers

time taken for execution

how much time a particular command or shell script executed there is any command to know this thanks (5 Replies)
Discussion started by: tsurendra
5 Replies

10. Shell Programming and Scripting

Calculate Time diff in milli milliseconds(Time format : HH:MM:SS,NNN)

Hi All, I have one file which contains time for request and response. I want to calculate time difference in milliseconds for each line. This file can contain 10K lines. Sample file with 4 lines. for first line. Request Time: 15:23:45,255 Response Time: 15:23:45,258 Time diff... (6 Replies)
Discussion started by: Raza Ali
6 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 08:19 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy