1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
|
#! /bin/sh
#
# Copyright (c) 2013-2014 Red Hat.
# Copyright (c) 1995-2000,2003 Silicon Graphics, Inc. All Rights Reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# Administrative script to check pmlogger processes are alive, and restart
# them as required.
#
# Get standard environment
. $PCP_DIR/etc/pcp.env
. $PCP_SHARE_DIR/lib/rc-proc.sh
PMLOGGER=pmlogger
PMLOGCONF="$PCP_BINADM_DIR/pmlogconf"
# error messages should go to stderr, not the GUI notifiers
unset PCP_STDERR
# constant setup
#
tmp=`mktemp -d /tmp/pcp.XXXXXXXXX` || exit 1
status=0
echo >$tmp/lock
trap "rm -rf \`[ -f $tmp/lock ] && cat $tmp/lock\` $tmp; exit \$status" 0 1 2 3 15
prog=`basename $0`
# control file for pmlogger administration ... edit the entries in this
# file to reflect your local configuration
#
CONTROL=$PCP_PMLOGGERCONTROL_PATH
# NB: FQDN cleanup; don't guess a 'real name for localhost', and
# definitely don't truncate it a la `hostname -s`. Instead now
# we use such a string only for the default log subdirectory, ie.
# for substituting LOCALHOSTNAME in the fourth column of $CONTROL.
# determine path for pwd command to override shell built-in
PWDCMND=`which pwd 2>/dev/null | $PCP_AWK_PROG '
BEGIN { i = 0 }
/ not in / { i = 1 }
/ aliased to / { i = 1 }
{ if ( i == 0 ) print }
'`
[ -z "$PWDCMND" ] && PWDCMND=/bin/pwd
eval $PWDCMND -P >/dev/null 2>&1
[ $? -eq 0 ] && PWDCMND="$PWDCMND -P"
here=`$PWDCMND`
# default location
#
logfile=pmlogger.log
# option parsing
#
SHOWME=false
MV=mv
CP=cp
KILL=pmsignal
TERSE=false
VERBOSE=false
VERY_VERBOSE=false
CHECK_RUNLEVEL=false
START_PMLOGGER=true
echo > $tmp/usage
cat >> $tmp/usage << EOF
Options:
-c=FILE,--control=FILE configuration of pmlogger instances to manage
-C query system service runlevel information
-N,--showme perform a dry run, showing what would be done
-s,--stop stop pmlogger processes instead of starting them
-T,--terse produce a terser form of output
-V,--verbose increase diagnostic verbosity
--help
EOF
ARGS=`pmgetopt --progname=$prog --config=$tmp/usage -- "$@"`
[ $? != 0 ] && exit 1
eval set -- "$ARGS"
while [ $# -gt 0 ]
do
case "$1"
in
-c) CONTROL="$2"
shift
;;
-C) CHECK_RUNLEVEL=true
;;
-N) SHOWME=true
MV="echo + mv"
CP="echo + cp"
KILL="echo + kill"
;;
-s) START_PMLOGGER=false
;;
-T) TERSE=true
;;
-V) if $VERBOSE
then
VERY_VERBOSE=true
else
VERBOSE=true
fi
;;
--) shift
break
;;
-\?) pmgetopt --usage --progname=$prog --config=$tmp/usage
status=1
exit
;;
esac
shift
done
if [ $# -ne 0 ]
then
pmgetopt --usage --progname=$prog --config=$tmp/usage
status=1
exit
fi
QUIETLY=false
if [ $CHECK_RUNLEVEL = true ]
then
# determine whether to start/stop based on runlevel settings - we
# need to do this when running unilaterally from cron, else we'll
# always start pmlogger up (even when we shouldn't).
#
QUIETLY=true
if is_chkconfig_on pmlogger
then
START_PMLOGGER=true
else
START_PMLOGGER=false
fi
fi
if [ $START_PMLOGGER = false ]
then
# if pmlogger has never been started, there's no work to do to stop it
[ ! -d "$PCP_TMP_DIR/pmlogger" ] && exit
$QUIETLY || $PCP_BINADM_DIR/pmpost "stop pmlogger from $prog"
fi
if [ ! -f "$CONTROL" ]
then
echo "$prog: Error: cannot find control file ($CONTROL)"
status=1
exit
fi
_error()
{
echo 2>&1 "$prog: [$CONTROL:$line]"
echo 2>&1 "Error: $1"
echo 2>&1 "... logging for host \"$host\" unchanged"
touch $tmp/err
}
_warning()
{
echo 2>&1 "$prog [$CONTROL:$line]"
echo 2>&1 "Warning: $1"
}
_message()
{
case $1
in
restart)
$PCP_ECHO_PROG $PCP_ECHO_N "Restarting$iam pmlogger for host \"$host\" ...""$PCP_ECHO_C"
;;
esac
}
_unlock()
{
rm -f lock
echo >$tmp/lock
}
_get_ino()
{
# get inode number for $1
# throw away stderr (and return '') in case $1 has been removed by now
#
stat "$1" 2>/dev/null \
| sed -n '/Device:[ ].*[ ]Inode:/{
s/Device:[ ].*[ ]Inode:[ ]*//
s/[ ].*//
p
}'
}
_get_configfile()
{
# extract the pmlogger configuration file (-c) from a list of arguments
#
echo $@ | sed -n \
-e 's/^/ /' \
-e 's/[ ][ ]*/ /g' \
-e 's/-c /-c/' \
-e 's/.* -c\([^ ]*\).*/\1/p'
}
_configure_pmlogger()
{
# update a pmlogger configuration file if it should be created/modified
#
configfile="$1"
hostname="$2"
if [ -f "$configfile" ]
then
# look for "magic" string at start of file, and ensure we created it
sed 1q "$configfile" | grep '^#pmlogconf [0-9]' >/dev/null
magic=$?
grep '^# Auto-generated by pmlogconf' "$configfile" >/dev/null
owned=$?
if [ $magic -eq 0 -a $owned -eq 0 ]
then
# pmlogconf file that we own, see if re-generation is needed
cp "$configfile" $tmp/pmlogger
if $PMLOGCONF -c -q -h $hostname $tmp/pmlogger >$tmp/diag 2>&1
then
if grep 'No changes' $tmp/diag >/dev/null 2>&1
then
:
elif [ -w $configfile ]
then
$VERBOSE && echo "Reconfigured: \"$configfile\" (pmlogconf)"
eval $MV $tmp/pmlogger "$configfile"
else
_warning "no write access to pmlogconf file \"$configfile\", skip reconfiguration"
ls -l "$configfile"
fi
else
_warning "pmlogconf failed to reconfigure \"$configfile\""
cat "s;$tmp/pmlogger;$configfile;g" $tmp/diag
echo "=== start pmlogconf file ==="
cat $tmp/pmlogger
echo "=== end pmlogconf file ==="
fi
fi
elif [ ! -e "$configfile" ]
then
# file does not exist, generate it, if possible
if $SHOWME
then
echo "+ $PMLOGCONF -c -q -h $hostname $configfile"
elif ! $PMLOGCONF -c -q -h $hostname "$configfile" >$tmp/diag 2>&1
then
_warning "pmlogconf failed to generate \"$configfile\""
cat $tmp/diag
echo "=== start pmlogconf file ==="
cat "$configfile"
echo "=== end pmlogconf file ==="
else
chown $PCP_USER:$PCP_GROUP "$configfile" >/dev/null 2>&1
fi
fi
}
_get_logfile()
{
# looking for -lLOGFILE or -l LOGFILE in args
#
want=false
for a in $args
do
if $want
then
logfile="$a"
want=false
break
fi
case "$a"
in
-l)
want=true
;;
-l*)
logfile=`echo "$a" | sed -e 's/-l//'`
break
;;
esac
done
}
_check_archive()
{
if [ ! -e "$logfile" ]
then
echo "$prog: Error: cannot find pmlogger output file at \"$logfile\""
if $TERSE
then
:
else
logdir=`dirname "$logfile"`
echo "Directory (`cd "$logdir"; $PWDCMND`) contents:"
LC_TIME=POSIX ls -la "$logdir"
fi
elif [ -f "$logfile" ]
then
echo "Contents of pmlogger output file \"$logfile\" ..."
cat "$logfile"
fi
}
_check_logger()
{
$VERBOSE && $PCP_ECHO_PROG $PCP_ECHO_N " [process $1] ""$PCP_ECHO_C"
# wait until pmlogger process starts, or exits
#
delay=5
[ ! -z "$PMCD_CONNECT_TIMEOUT" ] && delay=$PMCD_CONNECT_TIMEOUT
x=5
[ ! -z "$PMCD_REQUEST_TIMEOUT" ] && x=$PMCD_REQUEST_TIMEOUT
# wait for maximum time of a connection and 20 requests
#
delay=`expr \( $delay + 20 \* $x \) \* 10` # tenths of a second
while [ $delay -gt 0 ]
do
if [ -f $logfile ]
then
# $logfile was previously removed, if it has appeared again
# then we know pmlogger has started ... if not just sleep and
# try again
#
if echo "connect $1" | pmlc 2>&1 | grep "Unable to connect" >/dev/null
then
:
else
$VERBOSE && echo " done"
return 0
fi
_plist=`_get_pids_by_name pmlogger`
_found=false
for _p in `echo $_plist`
do
[ $_p -eq $1 ] && _found=true
done
if $_found
then
# process still here, just not accepting pmlc connections
# yet, try again
:
else
$VERBOSE || _message restart
echo " process exited!"
if $TERSE
then
:
else
echo "$prog: Error: failed to restart pmlogger"
echo "Current pmlogger processes:"
$PCP_PS_PROG $PCP_PS_ALL_FLAGS | tee $tmp/tmp | sed -n -e 1p
for _p in `echo $_plist`
do
sed -n -e "/^[ ]*[^ ]* [ ]*$_p /p" < $tmp/tmp
done
echo
fi
_check_archive
return 1
fi
fi
pmsleep 0.1
delay=`expr $delay - 1`
$VERBOSE && [ `expr $delay % 10` -eq 0 ] && \
$PCP_ECHO_PROG $PCP_ECHO_N ".""$PCP_ECHO_C"
done
$VERBOSE || _message restart
echo " timed out waiting!"
if $TERSE
then
:
else
sed -e 's/^/ /' $tmp/out
fi
_check_archive
return 1
}
# note on control file format version
# 1.0 was shipped as part of PCPWEB beta, and did not include the
# socks field [this is the default for backwards compatibility]
# 1.1 is the first production release, and the version is set in
# the control file with a $version=1.1 line (see below)
#
version=''
echo >$tmp/dir
rm -f $tmp/err $tmp/pmloggers
line=0
cat $CONTROL \
| sed -e "s;PCP_LOG_DIR;$PCP_LOG_DIR;g" \
| while read host primary socks dir args
do
# start in one place for each iteration (beware relative paths)
cd "$here"
line=`expr $line + 1`
# NB: FQDN cleanup: substitute the LOCALHOSTNAME marker in the config line
# differently for the directory and the pcp -h HOST arguments.
dir_hostname=`hostname || echo localhost`
dir=`echo $dir | sed -e "s;LOCALHOSTNAME;$dir_hostname;"`
[ "x$host" = "xLOCALHOSTNAME" ] && host=local:
$VERY_VERBOSE && echo "[control:$line] host=\"$host\" primary=\"$primary\" socks=\"$socks\" dir=\"$dir\" args=\"$args\""
case "$host"
in
\#*|'') # comment or empty
continue
;;
\$*) # in-line variable assignment
$SHOWME && echo "# $host $primary $socks $dir $args"
cmd=`echo "$host $primary $socks $dir $args" \
| sed -n \
-e "/='/s/\(='[^']*'\).*/\1/" \
-e '/="/s/\(="[^"]*"\).*/\1/' \
-e '/=[^"'"'"']/s/[;&<>|].*$//' \
-e '/^\\$[A-Za-z][A-Za-z0-9_]*=/{
s/^\\$//
s/^\([A-Za-z][A-Za-z0-9_]*\)=/export \1; \1=/p
}'`
if [ -z "$cmd" ]
then
# in-line command, not a variable assignment
_warning "in-line command is not a variable assignment, line ignored"
else
case "$cmd"
in
'export PATH;'*)
_warning "cannot change \$PATH, line ignored"
;;
'export IFS;'*)
_warning "cannot change \$IFS, line ignored"
;;
*)
$SHOWME && echo "+ $cmd"
eval $cmd
;;
esac
fi
continue
;;
esac
if [ -z "$version" -o "$version" = "1.0" ]
then
if [ -z "$version" ]
then
echo "$prog: Warning: processing default version 1.0 control format"
version=1.0
fi
args="$dir $args"
dir="$socks"
socks=n
fi
if [ -z "$primary" -o -z "$socks" -o -z "$dir" -o -z "$args" ]
then
_error "insufficient fields in control file record"
continue
fi
if $VERY_VERBOSE
then
pflag=''
[ $primary = y ] && pflag=' -P'
echo "Check pmlogger$pflag -h $host ... in $dir ..."
fi
# check for directory duplicate entries
#
if [ "`grep $dir $tmp/dir`" = "$dir" ]
then
_error "Cannot start more than one pmlogger instance for archive directory \"$dir\""
continue
else
echo "$dir" >>$tmp/dir
fi
# make sure output directory exists
#
if [ ! -d "$dir" ]
then
mkdir -p -m 755 "$dir" >$tmp/err 2>&1
if [ ! -d "$dir" ]
then
cat $tmp/err
_error "cannot create directory ($dir) for PCP archive files"
continue
else
_warning "creating directory ($dir) for PCP archive files"
fi
chown $PCP_USER:$PCP_GROUP "$dir" >/dev/null 2>&1
fi
cd "$dir"
dir=`$PWDCMND`
$SHOWME && echo "+ cd $dir"
# ensure pcp user will be able to write there
#
chown -R $PCP_USER:$PCP_GROUP "$dir" >/dev/null 2>&1
if [ ! -w "$dir" ]
then
echo "$prog: Warning: no write access in $dir, skip lock file processing"
else
# demand mutual exclusion
#
rm -f $tmp/stamp $tmp/out
delay=200 # tenths of a second
while [ $delay -gt 0 ]
do
if pmlock -v lock >>$tmp/out 2>&1
then
echo $dir/lock >$tmp/lock
break
else
[ -f $tmp/stamp ] || touch -t `pmdate -30M %Y%m%d%H%M` $tmp/stamp
if [ -z "`find lock -newer $tmp/stamp -print 2>/dev/null`" ]
then
if [ -f lock ]
then
echo "$prog: Warning: removing lock file older than 30 minutes"
LC_TIME=POSIX ls -l $dir/lock
rm -f lock
else
# there is a small timing window here where pmlock
# might fail, but the lock file has been removed by
# the time we get here, so just keep trying
#
:
fi
fi
fi
pmsleep 0.1
delay=`expr $delay - 1`
done
if [ $delay -eq 0 ]
then
# failed to gain mutex lock
#
# maybe pmlogger_daily is running ... check and silently
# move on if this is the case
#
# Note: $PCP_RUN_DIR may not exist (see pmlogger_daily note), but
# only if pmlogger_daily has not run, so no chance of a
# collision
#
if [ -f "$PCP_RUN_DIR"/pmlogger_daily.pid ]
then
# maybe, check pid matches a running /bin/sh
#
pid=`cat "$PCP_RUN_DIR"/pmlogger_daily.pid`
if _get_pids_by_name sh | grep "^$pid\$" >/dev/null
then
# seems to be still running ... nothing for us to see
# or do here
#
continue
fi
fi
if [ -f lock ]
then
echo "$prog: Warning: is another PCP cron job running concurrently?"
LC_TIME=POSIX ls -l $dir/lock
else
echo "$prog: `cat $tmp/out`"
fi
_warning "failed to acquire exclusive lock ($dir/lock) ..."
continue
fi
fi
pid=''
if [ "X$primary" = Xy ]
then
# NB: FQDN cleanup: previously, we used to quietly accept several
# putative-aliases in the first (hostname) slot for a primary logger,
# which were all supposed to refer to the local host. So now we
# squash them all to the officially pcp-preferred way to access it.
# This does not get used by pmlogger in the end (gets -P and not -h
# in the primary logger case), but it *does* matter for pmlogconf.
host=local:
if test -f "$PCP_TMP_DIR/pmlogger/primary"
then
if $VERY_VERBOSE
then
_host=`sed -n 2p <"$PCP_TMP_DIR/pmlogger/primary"`
_arch=`sed -n 3p <"$PCP_TMP_DIR/pmlogger/primary"`
$PCP_ECHO_PROG $PCP_ECHO_N "... try $PCP_TMP_DIR/pmlogger/primary: host=$_host arch=$_arch""$PCP_ECHO_C"
fi
primary_inode=`_get_ino $PCP_TMP_DIR/pmlogger/primary`
$VERY_VERBOSE && echo primary_inode=$primary_inode
for file in $PCP_TMP_DIR/pmlogger/*
do
case "$file"
in
*/primary|*\*)
;;
*/[0-9]*)
inode=`_get_ino "$file"`
$VERY_VERBOSE && echo $file inode=$inode
if [ "$primary_inode" = "$inode" ]
then
pid="`echo $file | sed -e 's/.*\/\([^/]*\)$/\1/'`"
break
fi
;;
esac
done
if [ -z "$pid" ]
then
if $VERY_VERBOSE
then
echo "primary pmlogger process pid not found"
ls -l "$PCP_TMP_DIR/pmlogger"
fi
else
if _get_pids_by_name pmlogger | grep "^$pid\$" >/dev/null
then
$VERY_VERBOSE && echo "primary pmlogger process $pid identified, OK"
else
$VERY_VERBOSE && echo "primary pmlogger process $pid not running"
pid=''
fi
fi
fi
else
for log in $PCP_TMP_DIR/pmlogger/[0-9]*
do
[ "$log" = "$PCP_TMP_DIR/pmlogger/[0-9]*" ] && continue
if $VERY_VERBOSE
then
_host=`sed -n 2p <$log`
_arch=`sed -n 3p <$log`
$PCP_ECHO_PROG $PCP_ECHO_N "... try $log host=$_host arch=$_arch: ""$PCP_ECHO_C"
fi
# throw away stderr in case $log has been removed by now
match=`sed -e '3s/\/[0-9][0-9][0-9][0-9][0-9.]*$//' $log 2>/dev/null \
| $PCP_AWK_PROG '
BEGIN { m = 0 }
NR == 3 && $0 == "'$dir'" { m = 2; next }
END { print m }'`
$VERY_VERBOSE && $PCP_ECHO_PROG $PCP_ECHO_N "match=$match ""$PCP_ECHO_C"
if [ "$match" = 2 ]
then
pid=`echo $log | sed -e 's,.*/,,'`
if _get_pids_by_name pmlogger | grep "^$pid\$" >/dev/null
then
$VERY_VERBOSE && echo "pmlogger process $pid identified, OK"
break
fi
$VERY_VERBOSE && echo "pmlogger process $pid not running, skip"
pid=''
else
$VERY_VERBOSE && echo "different directory, skip"
fi
done
fi
if [ -z "$pid" -a $START_PMLOGGER = true ]
then
rm -f Latest
if [ "X$primary" = Xy ]
then
args="-P $args"
iam=" primary"
# clean up port-map, just in case
#
PM_LOG_PORT_DIR="$PCP_TMP_DIR/pmlogger"
rm -f "$PM_LOG_PORT_DIR/primary"
else
args="-h $host $args"
iam=""
fi
# each new log started is named yyyymmdd.hh.mm
#
LOGNAME=`date "+%Y%m%d.%H.%M"`
# handle duplicates/aliases (happens when pmlogger is restarted
# within a minute and LOGNAME is the same)
#
suff=''
for file in $LOGNAME.*
do
[ "$file" = "$LOGNAME"'.*' ] && continue
# we have a clash! ... find a new -number suffix for the
# existing files ... we are going to keep $LOGNAME for the
# new pmlogger below
#
if [ -z "$suff" ]
then
for xx in 0 1 2 3 4 5 6 7 8 9
do
for yy in 0 1 2 3 4 5 6 7 8 9
do
[ "`echo $LOGNAME-${xx}${yy}.*`" != "$LOGNAME-${xx}${yy}.*" ] && continue
suff=${xx}${yy}
break
done
[ ! -z "$suff" ] && break
done
if [ -z "$suff" ]
then
_error "unable to break duplicate clash for archive basename $LOGNAME"
fi
$VERBOSE && echo "Duplicate archive basename ... rename $LOGNAME.* files to $LOGNAME-$suff.*"
fi
eval $MV -f $file `echo $file | sed -e "s/$LOGNAME/&-$suff/"`
done
configfile=`_get_configfile $args`
if [ ! -z "$configfile" ]
then
# if this is a relative path and not relative to cwd,
# substitute in the default pmlogger search location.
#
if [ ! -f "$configfile" -a "`basename $configfile`" = "$configfile" ]
then
configfile="$PCP_SYSCONF_DIR/pmlogger/$configfile"
fi
# check configuration file exists and is up to date
_configure_pmlogger "$configfile" "$host"
fi
$VERBOSE && _message restart
sock_me=''
if [ "$socks" = y ]
then
# only check for pmsocks if it's specified in the control file
have_pmsocks=false
if which pmsocks >/dev/null 2>&1
then
# check if pmsocks has been set up correctly
if pmsocks ls >/dev/null 2>&1
then
have_pmsocks=true
fi
fi
if $have_pmsocks
then
sock_me="pmsocks "
else
echo "$prog: Warning: no pmsocks available, would run without"
sock_me=""
fi
fi
_get_logfile
if [ -f $logfile ]
then
$VERBOSE && $SHOWME && echo
eval $MV -f $logfile $logfile.prior
fi
args="$args -m pmlogger_check"
if $SHOWME
then
echo
echo "+ ${sock_me}$PMLOGGER $args $LOGNAME"
_unlock
continue
else
$PCP_BINADM_DIR/pmpost "start pmlogger from $prog for host $host"
${sock_me}$PMLOGGER $args $LOGNAME >$tmp/out 2>&1 &
pid=$!
fi
# wait for pmlogger to get started, and check on its health
_check_logger $pid
# the archive folio Latest is for the most recent archive in
# this directory
#
if [ -f $LOGNAME.0 ]
then
$VERBOSE && echo "Latest folio created for $LOGNAME"
mkaf $LOGNAME.0 >Latest
chown $PCP_USER:$PCP_GROUP Latest >/dev/null 2>&1
else
logdir=`dirname $LOGNAME`
if $TERSE
then
echo "$prog: Error: archive file `cd $logdir; $PWDCMND`/$LOGNAME.0 missing"
else
echo "$prog: Error: archive file $LOGNAME.0 missing"
echo "Directory (`cd $logdir; $PWDCMND`) contents:"
LC_TIME=POSIX ls -la $logdir
fi
fi
elif [ ! -z "$pid" -a $START_PMLOGGER = false ]
then
# Send pmlogger a SIGTERM, which is noted as a pending shutdown.
# Add pid to list of loggers sent SIGTERM - may need SIGKILL later.
#
$VERY_VERBOSE && echo "+ $KILL -s TERM $pid"
eval $KILL -s TERM $pid
$PCP_ECHO_PROG $PCP_ECHO_N "$pid ""$PCP_ECHO_C" >> $tmp/pmloggers
fi
_unlock
done
# check all the SIGTERM'd loggers really died - if not, use a bigger hammer.
#
if $SHOWME
then
:
elif [ $START_PMLOGGER = false -a -s $tmp/pmloggers ]
then
pmloggerlist=`cat $tmp/pmloggers`
if ps -p "$pmloggerlist" >/dev/null 2>&1
then
$VERY_VERBOSE && ( echo; $PCP_ECHO_PROG $PCP_ECHO_N "+ $KILL -KILL `cat $tmp/pmies` ...""$PCP_ECHO_C" )
eval $KILL -s KILL $pmloggerlist >/dev/null 2>&1
delay=30 # tenths of a second
while ps -f -p "$pmloggerlist" >$tmp/alive 2>&1
do
if [ $delay -gt 0 ]
then
pmsleep 0.1
delay=`expr $delay - 1`
continue
fi
echo "$prog: Error: pmlogger process(es) will not die"
cat $tmp/alive
status=1
break
done
fi
fi
[ -f $tmp/err ] && status=1
exit
|