
136 D
OMINION
SX I
NSTALLATION AND
O
PERATIONS
M
ANUAL
Basic CPU Utilization Monitoring Example
#Description: This TCL script checks the CPU utilization for each port connected
#
to a HP-UX server. It alerts the subscribed user that the threshold
#
limit has reached through e-mail notification. This TCL script uses
#
vmstat to find out the CPU usage of the user process and checks with
#
given threshold limit. During the process user can input the threshold
#
limit or the interval through the following commands:
#
THR <threshold> - Input of threshold
#
INTR <interval> - Interval at which the TCL script has to do checking.
#
To quit out of the script type QUIT and hit enter
#Default threshold is 2 %
set thr 2
#Default interval is 10 seconds
set intr 10
#change this mail id to your own
set mailid "mailto://[email protected]"
#initalize events
proc initEvents { } {
global
mailid
#add subscriptions to events.
ampaddsubscription event.alarm.cpu $mailid
#save
subscription
ampsave
}
#delete events. Called during QUIT
proc delEvents { } {
global
mailid
#delete subscriptions to events
amprmsubscription
event.alarm.cpu
$mailid
#save
configuration
ampsave
}
#Retrive cpu utilization for user process,
#check if it has reached the threshold and trigger an event
proc cpuUtil { port } {
global
thr
set
us
0
set sy 0
Summary of Contents for Dominion SX16
Page 1: ...Installation and Operations Manual SX16 SX32...
Page 2: ...This page intentionally left blank...
Page 4: ...This page intentionally left blank...
Page 6: ...This page intentionally left blank...
Page 10: ...iv TABLE OF CONTENTS...
Page 14: ...viii TABLE OF FIGURES...
Page 24: ...10 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...
Page 30: ...16 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...
Page 82: ...68 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...
Page 84: ...70 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...
Page 86: ...72 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...
Page 88: ...74 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...
Page 102: ...88 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...
Page 114: ...100 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...
Page 120: ...106 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...
Page 132: ...118 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...
Page 158: ...144 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...
Page 161: ...APPENDIX K TECHNICAL FAQS 147 DSX 0A E 255 60 2000...
Page 162: ...148 DOMINION SX INSTALLATION AND OPERATIONS MANUAL...