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 046e550 commit 73fe7ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions condor_check
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ 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
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
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
negotime=`condor_status -pool $COLLECTOR1 -nego -l | grep ^LastNegotiationCycleDuration0 | awk '{print $3}'` || exit 3
echo "Negotiation time (ideally under 300s) other = ${negotime}s"
echo

Expand Down

0 comments on commit 73fe7ae

Please sign in to comment.