|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Solaris+Perl script to get process start date
Hi all,
after reading the post: * http://www.unix.com/solaris/101653-h...e-solaris.html I wrote my perl script and it worked like a charm. This script is called every 5 minutes by the monitoring server crontab and is executed on the remote network elements via ssh (the perl script is located on the remote machines). The scripts compare the actual unix time: PHP Code:
PHP Code:
PHP Code:
For some time I had no problems at all but lately I get fake values especially during the night: it happens that for one/two or even three times the $DELTA is =0sec or =1sec, but checking the next day I discover that the process didn't restarted and its $PID_TIME goes back many hours the fake restart!!! To me it seems that the wrong value is returned by stat/localtime function. Is it possible that under certain conditions the stat function doesn't work? Here is our code: PHP Code:
|
| Sponsored Links | ||
|
|
#2
|
|||
|
|||
|
The time/stat functions work very well and have been completely tested over and over.
Did this problem occur on the day when you went from standard time to daylight time? Does your system run xntpd or ntpd? |
| Sponsored Links | ||
|
|
#3
|
|||
|
|||
|
Hi Jim, thanks for your reply!
This happens often in the evening, in different days not only the day we switched! Unfortunately I activated the script after the standard/daylight switch so I can't compare the two behaviours (after/before). We don't have xntpd neither ntpd, our hosts use a proprietary ALU command (more Lucent than Alcatel I guess) to sync. I don't have much infos about this command since it's built into the application itself. The command is scheduled to run every 10 minutes 24/7/365. Thanks, Evan |
|
#4
|
|||
|
|||
|
PID_SERVICE
Code:
$PID_SERVICE=`ps -ef | grep "$PROC_NAME" | grep -v grep | grep -v $0 | awk '{print \$2}'`;
I can try most of the commands in the pipe with the exception of "grep -v $0" which I believe is the Perl program itself. So I stuck in 'http' where $PROC_NAME is and got back about 10 lines. There is no loop for multi-line output. Need debug information for how the script reacts to $PID_SERVICE under these conditions. Attach the debug log, 'paperclip' icon on the message composer. The only correction I can give definitively is the script runs every 10 minutes 24/7/52. ![]() |
| Sponsored Links | |
|
|
#5
|
|||
|
|||
|
>>> "grep -v $0" which I believe is the Perl program itself Yes that's right. >>>> There is no loop for multi-line output. No problem for this because the processes I monitor are single instance (but you're right: it would be good if the script could handle this scenario or at least send an error message, I'll work on this!). I made another modification in the "query": Code:
$PID_SERVICE=`ps -ef | grep -w "$PROC_NAME" | grep -v grep | grep -v $0 | awk '{print \$2}'`;This way I grep only the exact name of the process. I suppose that the problem was due to the processes TCPIPSCH and IPSCH. Two distinct processes but the same final letters: since I use the -w option everything works fine. No fake results since 5 days ago, when I made the modification. BTW: What's 24/7/52? 52 weeks~365, what's the difference? ![]() Thanks for your time! Kind Regards, Evan |
| Sponsored Links | |
|
|
#6
|
|||
|
|||
|
www.openyoursource.com
Boa noite, estamos com o portal http://www.openyoursource.com, e iniciamos ha praticamente ha 2 semanas e meia, somos um portal de artigos,duvida,dicas,truques e etc, sobre o sistema solaris10 e opensolaris, nao estamos para competir com o linux, e com outros queremos ser um canal de referencia para o opensolaris.
|
| Sponsored Links | |
|
|
#7
|
|||
|
|||
|
grep -w
Interesting, never used the -w option, will keep that in mind.
24/7/52 is hours of day, days of week, weeks of year. Most people watch or read the ads for 24/7/365 which is hours of day, days of week, days of year and think this is a valid progression. This would be marked wrong in the sixth grade where I went to school, but that's marketing for you. |
| Sponsored Links | ||
|
![]() |
| Tags |
| perl solaris process start time date |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to get process start date and time in SOLARIS? | Jagadeeswaran.K | Solaris | 7 | 03-26-2009 11:49 AM |
| Script - How to automatically start another process when the previous process ends? | luna_soleil | Shell Programming and Scripting | 10 | 02-18-2009 11:26 AM |
| start process at assidned date and time | gd2003 | UNIX for Dummies Questions & Answers | 6 | 01-21-2008 10:15 AM |
| Specify a previous date as start date in shell script | ritzwan0 | Shell Programming and Scripting | 2 | 09-25-2006 05:58 PM |
| to get process start date and time | naeem ahmad | UNIX for Advanced & Expert Users | 2 | 02-27-2006 04:09 AM |
|
|