The problem I had with this is that the Network (and, I believe, the
NetView source) is that the TEC ships with an old source name of NV6k
while NetView defines the source as "nvserverd" in the .baroc file.
I had to change both the event source (via "wsetsrc -n 'nvserverd' NV6K" )
and the event filter for the "Network" event group. Here's a code
sniplet. Check the man pages on the "w*" commands. YMMV with this code.
egId=`wlseg -f Network | awk '/NV6K/{print $2}' | cut -b1`
if [ "$egId" ] ; then
wdelegflt Network ${egId}
echo "Removed legacy NV6K filter...\c"
fi
egId=`wlseg -f Network | awk '/nvserverd/{print $2}' | cut -b1`
if [ ! "$egId" ] ; then
waddegflt -c 'nvserverd' Network
echo "Added nvserverd source"
else
echo "nvserverd appears to be present in Network... skipping"
fi
HTH. Best of luck.
Mike
On Wed, Feb 23, 2000 at 11:01:42AM +0800, Raymond Tan wrote:
> > hi tivoliers,
> >
> > excuse this newbie question...
> >
> > On my test TMR server, only this Netview event ( nvserverd ) appear in
> > TEC under the ALL event group, but not under the Netview Group......
> >
> > Does anyone have this before ?
> >
> > Our test environment : TMR : AIX 4.3.2 , Oracle database version 7.3.4.
> >
> > Product
> > Patch level Product file
> > ----------
> > ------------- ------------------
> > Framework 3.6.1 56
> > 3_6_1-tmf-0056.tar
> >
> > Distributed Monitoring 3.6.1 26
> > 3_6_1-dmn-0026.tar
> >
> > User Administration 3.6.1 16
> > 3_6_1-adm-0016.tar
> >
> > Inventory 3.6.1 18
> > 3_6_1-inv-0018.tar
> >
> > Remote Control 3.6.1 12
> > 3_6_1-rcl-0012.tar
> >
> > Software Installation Service 3.6.1 02
> > 3_6_1-sis-0002.tar
> >
> > Software Distribution Service 3.6.1 15
> > 3_6_1-sds-0015.tar
> >
> > Enterprise Console 3.6.1 12
> > 3_6_1-tec-0012.tar
> >
> > Netview 5.1.1 for Unix Patch B
> > nil
> >
> > Cheers
> >
--
Michael Gutteridge mikeg@halcyon.com
"Better beans and bacon in peace than cakes and ale in fear."
-Aesop, The Town Mouse and the Country Mouse
|