Skip to content

Commit

Permalink
Multiple negotiator times
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesletts committed Feb 8, 2016
1 parent 673fef9 commit 046e550
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion condor_check
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@ condor_status -pool $COLLECTOR1 -schedd || exit 2
echo

# Last Negotiation Cycle time
negotime=`condor_status -pool $COLLECTOR1 -nego -l | grep LastNegotiationCycleDuration1 | awk '{print $3}'` || exit 3
echo "Negotiation time (ideally under 300s) T1 = ${negotime}s"
negotime=`condor_status -pool $COLLECTOR1 -nego -l | grep LastNegotiationCycleDuration2 | awk '{print $3}'` || exit 3
echo "Negotiation time (ideally under 300s) T2_US = ${negotime}s"
negotime=`condor_status -pool $COLLECTOR1 -nego -l | grep LastNegotiationCycleDuration0 | awk '{print $3}'` || exit 3
echo "Negotiation time (ideally under 300s) = ${negotime}s"
echo "Negotiation time (ideally under 300s) other = ${negotime}s"
echo

if [ $COLLECTOR2 != "unknown" ] ; then
Expand Down

0 comments on commit 046e550

Please sign in to comment.