[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference azur::mcc

Title:DECmcc user notes file. Does not replace IPMT.
Notice:Use IPMT for problems. Newsletter location in note 6187
Moderator:TAEC::BEROUD
Created:Mon Aug 21 1989
Last Modified:Wed Jun 04 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:6497
Total number of notes:27359

3095.0. "Missing Comma in Rule" by TROOA::BALDOCK (Chris Baldock) Thu May 28 1992 19:41

Can anyone tell me why I get a message regarding a missing comma from
the rule below?  I want to set up a rule which only fires if there is a
change in the counter from the last polling.  Am I blind?

Thanks.

Chris

!+
! O021_L1_FCS: LAN Port 0
!	Check for FCS problems on O021: LINE 1
!-
CREATE -
	MCC 0 ALARMS RULE O021_L1_FCS -
	EXPRESSION		= ( CHANGE_OF( TRANSLAN .LBOC.O.O021 LINE 1 -
				    FCSERRORS *, * ), EVERY 01:00:00 ), -
	PROCEDURE		= MCC_COMMON:MCC_ALARMS_MAIL_ALARM.COM, -
	EXCEPTION HANDLER	= MCC_COMMON:MCC_ALARMS_MAIL_EXCEPTION.COM, -
	CATEGORY		= "FCS", -
	DESCRIPTION		= "Check FCS errors on O021 LAN Port", -
	QUEUE			= "SYS$BATCH", -
	PARAMETER		= "LNM1::26320", -
	PERCEIVED SEVERITY	= WARNING, -
	IN DOMAIN		= JLL_NS:.WANB_O
    
T.RTitleUserPersonal
Name
DateLines
3095.1change to "AT" EVERYCTHQ3::WOODCOCKThu May 28 1992 20:2113
Hi Chris,

>>				    FCSERRORS *, * ), EVERY 01:00:00 ), -
    
Try changing the above line to:

                                  FCSERRORS *, * ), AT EVERY 01:00:00 ), -
                                                    ^^
                                                    Add the "AT"

hope this helps,
brad...
3095.2there was a missing commaMOLAR::ROBERTSKeith Roberts - DECmcc Toolkit TeamFri May 29 1992 15:307
    There is a comma missing.  The syntax is:
    
    	(change_of( entity/attribute , value-1 , value-2 ) , time-spec )
    
    You were missing the comma before "value-1"
    
    /keith