DX NetOps

  • 1.  How do I split a string in Vendor cert

    Posted Mar 26, 2014 11:44 PM

    I have an OID that returns the value:   CN=Notesxxx01/OU=SVR/O=ATT

    I want to take Notesxxx01 and put it in the metric family attribute  DominoName

    and I want to take the ATT and put it in the metric family attribute DominoDomain

    What MVEL funtion do I use to extract the appropriate parts?



  • 2.  RE: How do I split a string in Vendor cert

    Posted Apr 16, 2014 10:01 AM

    try to modify the following example:

    tokens = rttMonCtrlAdminTag.split("-"); tokens[1].toString()

    where rttMonCtrlAdminTag is IP SLA TAG(OID variable defined within certification) divided by "-". Token1 is the first substring.