DX NetOps

  • 1.  CA Spectrum 10.1 Check for multipe events over a period

    Posted Sep 04, 2016 07:17 PM

    Hi

    Trying to work out an event handling process

    On a model if we have no events of type 0x0ff00111 OR 0xff00116 in 30 minutes I'd like to generate a new event/alarm to advise no events happened.

    And when we get a ff00111 or 116 that will clear the alarm created above

     

    Trying to work out one rule that would take care of it all

    Toying with the idea that 111 and 116 would also spawn another event 130 and use that as the checker then using a rule that if no 130 appears in x minutes then alarm - but interested in other better ways of doing it

     

    Thanks



  • 2.  Re: CA Spectrum 10.1 Check for multipe events over a period
    Best Answer

    Broadcom Employee
    Posted Sep 06, 2016 02:15 AM

    Hi Jason,

     

    I have the following idea. Please test and verify if this works for you. I take just one 0x0ff00111 single case. The other 0xff00116 will just need to duplicate the event configuration.

     

    I am using Heartbeat rule, i.e.

    Event1 E 50 R CA.heartbeat, Event2, Event3, 1800, Event4

    Event3 E 50 A 3,Alarm3 \
               R CA.EventCondition, "default", Event4
    Event2 E 50 C Alarm3 \
               R CA.EventCondition, "default", Event1

     

    The heartbeat rule start with the occurrence of Event1, Event2 will be equal to 0x0ff00111. This heartbeat rule will look for Event2 and raise Event3 if Event2 doesn't happen in 1800 sec (30 min).

    Event3 will raise alarm, i.e. Alarm3, and also Event4 which stops the Heartbeat rule.

    When Event2 happens, it will clear Alarm3, and also raise Event1 which re-starts the Heartbeat rule.

     

    In the beginning you need to trigger the Heartbeat rule by raising Event1 (or Event2).

     

    I hope this helps.

     

    Regards,

    Widjaja.

     



  • 3.  Re: CA Spectrum 10.1 Check for multipe events over a period

    Posted Sep 11, 2016 11:21 PM

    Hi

    Apologies for the delay

    Yes that worked well

    To make it work for either event ff00111 or event ff00116 I added a default event  (fff00500) creation to both those events. So if either of the 111 or 116 events happen then they will be captured by the same process

     

    Nice work

    Thanks