03-14-2009
Need Information About Process
Hi All:-
1- i am working in unix system that is runnign some script
2- this script put the log file into specific folder
3- the log does not include the start time of the script and the end time
What i need to know what is the duration time for each request
Note:-
I don't any thing about the time stamp programming and how does it work
so please if the timestap is the only way to do what i want please provide me with any web site explain timestap how to create for to be format
very thanks
Last edited by dellsh; 03-16-2009 at 11:51 AM..
10 More Discussions You Might Find Interesting
1. UNIX for Advanced & Expert Users
Hi,
If we have a process p1 running and then p2 attempts to shutdown p1. Is there a means for p1 to know who has requested him to shutdown
Thanks and regards,
Reji (1 Reply)
Discussion started by: rejise
1 Replies
2. Programming
Hello,
I am working on Sun Solaris 5.7. I am trying to read the running time of a process through a C program.
One way I am reading it is by using the command ps -<pid> -f
The other way is from the struct psinfo_t which is there under /proc/pid/psinfo.
However, the two times are... (1 Reply)
Discussion started by: hmurali
1 Replies
3. Programming
I have written a program to collect some performance metrics on and AIX box, but I'm having difficultly getting the process information.
I'm lead to believe that I'm not getting the correct information because I'm trying to run the program on AIX 5.1 (5100-03), but I'm not convinced as the... (0 Replies)
Discussion started by: StuBob
0 Replies
4. Shell Programming and Scripting
I need a script to record top 5 processes to a file. I need the timestamp, cpu and memory utilization along with the process ID.
Thanks in advance! (1 Reply)
Discussion started by: jabcd
1 Replies
5. Shell Programming and Scripting
Hello,
We have a domain where instances attached to it are in multiple machines. Is there any way that I can get the process information of the domain of a secondary server from the primary.
ssh authentication is enabled on the functional ID and if I scsu to that ID and do the ssh: $ssh machine2... (0 Replies)
Discussion started by: chiru_h
0 Replies
6. UNIX for Dummies Questions & Answers
What sort of statistical information related to a running process can we retrieve using commands? For example, we can get the process id, memory usage and running time of a process using the commands ps and ipcs . Can we get any more information about a running process?
Please list them. Also... (4 Replies)
Discussion started by: fermisoft
4 Replies
7. Shell Programming and Scripting
Hello all
im trying to build small script in tcsh that will monitor some process
that are making some api calles to some server .
first of all im trying to find way to see how many threads each process is using , and else how can i print each
Thread id .
can it be done ? ( using sunOs ) (2 Replies)
Discussion started by: umen
2 Replies
8. Programming
Can any one tell me is there any problem in reading the /proc/#/status file for finding out the exact process name..??? (4 Replies)
Discussion started by: clintoo
4 Replies
9. Solaris
Hi Guys
Is it possible to display which process generates the most i/o on my zpool?
With # zpool iostst 3 and iostat i just see the general i/o but not the i/o on the process level.
thx in advance,
Fry (0 Replies)
Discussion started by: fryzh
0 Replies
10. Shell Programming and Scripting
I want to extract the process having highest utilization on each processor core
and then output its information (PID etc.) to a file. How can I do it by using either top or ps command?
Thanks. (1 Reply)
Discussion started by: Vaibhavs1985
1 Replies
LEARN ABOUT PHP
set_time_limit
SET_TIME_LIMIT(3) 1 SET_TIME_LIMIT(3)
set_time_limit - Limits the maximum execution time
SYNOPSIS
bool set_time_limit (int $seconds)
DESCRIPTION
Set the number of seconds a script is allowed to run. If this is reached, the script returns a fatal error. The default limit is 30 sec-
onds or, if it exists, the max_execution_time value defined in the php.ini.
When called, set_time_limit(3) restarts the timeout counter from zero. In other words, if the timeout is the default 30 seconds, and 25
seconds into script execution a call such as set_time_limit(20) is made, the script will run for a total of 45 seconds before timing out.
PARAMETERS
o $seconds
- The maximum execution time, in seconds. If set to zero, no time limit is imposed.
RETURN VALUES
Returns TRUE on success, or FALSE on failure.
NOTES
Warning
This function has no effect when PHP is running in safe mode. There is no workaround other than turning off safe mode or changing
the time limit in the php.ini.
Note
The set_time_limit(3) function and the configuration directive max_execution_time only affect the execution time of the script
itself. Any time spent on activity that happens outside the execution of the script such as system calls using system(3), stream
operations, database queries, etc. is not included when determining the maximum time that the script has been running. This is not
true on Windows where the measured time is real.
SEE ALSO
max_execution_time, max_input_time.
PHP Documentation Group SET_TIME_LIMIT(3)