All,
I am having some performance issues with my production NetView server and in
an effort to diagnose the issue I ran a script that someone from the forum
contributed a while back. It checks the appl queue.
When I run the script I get the following output:
Turning on trapd tracing
Starting tracing now....
Toggling trace mode of SNMP trap daemon
Waiting for one minute---------------------------|
.................................................
Stopping Tracing....
Toggling trace mode of SNMP trap daemon
Getting trapd status from /usr/OV/log/trapd.trace
Wed May 25 08:04:17 2005 send_to_all_appls: [0] appl queue size 1 of maximum
5000 events
Wed May 25 08:04:17 2005 send_to_all_appls: [55042] appl queue size 1 of
maximum 5000 events
Should I be concerned with the last line? If I am reading this correctly I
am configured for a max of 5000 events and I have a queue size of 55042. I
would say that the appl queue size needs to be changed. We have a very large
environment.
Here is the script so you can see what it is doing:
#!/usr/bin/ksh
clear
echo > /usr/OV/log/trapd.trace
echo "Turning on trapd tracing"
echo ""
echo ""
echo "Starting tracing now...."
/usr/OV/bin/trapd -T
echo ""
echo ""
# Progress indicator
while :; do
sleep 1
echo ".\c"
done &
Progress=$!
trap 9 15 "kill $Progress;exit 1"
echo "Waiting for one minute---------------------------|"
sleep 50
kill $Progress
echo ""
echo ""
echo "Stopping Tracing...."
/usr/OV/bin/trapd -T
echo ""
echo ""
echo "Getting trapd status from /usr/OV/log/trapd.trace"
tail /usr/OV/log/trapd.trace | grep "appl queue size"
Thank You!
Scott Bursik
|