ASAP 3.2 Server Manual
HP NonStop ASAP Server Manual Page 198 of 381
GOAL CPU, BUSY < 60
GOAL CPU 0, BUSY < 70, BUSY << 80, BUSY <<< 90
To define a Boolean goal named BUSYGOAL for all CPUs that checks the BUSY
and QUEUE attributes and where failure of either will result in the goal failing:
GOAL CPU, BUSYGOAL = (BUSY < 80 AND QUEUE < 3)
To define a Boolean goal named BUSYGOAL for all CPUs that checks the BUSY
and QUEUE attributes and where failure of both are required for the goal to fail:
GOAL CPU, BUSYGOAL = (BUSY < 80 OR QUEUE < 3)
To define a Boolean goal named BUSYGOAL for all CPUs that checks the BUSY
and QUEUE attributes and writes a critical event if the goal fails:
GOAL CPU, BUSYGOAL = (BUSY < 80 AND QUEUE < 3) CRITICAL
To define a Boolean goal named BUSYGOAL for all CPUs that checks the BUSY
and QUEUE attributes and takes an action if the goal fails:
GOAL CPU, BUSYGOAL = (BUSY < 80 AND QUEUE < 3) ACTION “TACL
RUN $SYSTEM.MACROS.BUSYCPU <#OBJECT> <#BUSYVALUE>
<#QUEUEVALUE>”
To define a Boolean goal named BUSYGOAL for all CPUs that checks the BUSY,
QUEUE and DISP attributess:
GOAL CPU, BUSYGOAL=(BUSY < 80 AND QUEUE < 3 AND DISP < 1000)
To define a Boolean goal named RESOURCE for all CPUs that checks the BUSY,
QUEUE and two PCB attributes:
GOAL CPU,BUSYGOAL=(BUSY<80 AND QUEUE<3 AND (PCB>10 OR
PCBX>10))
HELP Command
The HELP command provides an explanation for the command or keyword that you
specify.