DX Unified Infrastructure Management

 View Only
  • 1.  Creating a ALARM CONSOLE in UMP

    Posted Oct 10, 2019 02:22 AM
    How to create a custom Alarm console in USM/UMP where i can chose specific user tags and probes etc but not all the incoming alarms ?
    Some one please help me out.

    I tried to create one filter using but that give nothing as output.


    ------------------------------
    System Analyst
    DXC Technology
    ------------------------------


  • 2.  RE: Creating a ALARM CONSOLE in UMP

    Posted Oct 10, 2019 03:27 AM
    Once you create a filter, you must activate the filter, so that you can see in the view that that filter is active (in this screen shot filter: luc)
    console_filter



  • 3.  RE: Creating a ALARM CONSOLE in UMP

    Posted Oct 10, 2019 03:35 AM
    I did share the 2nd screen shot as well. updated below


    ------------------------------
    System Analyst
    DXC Technology
    ------------------------------



  • 4.  RE: Creating a ALARM CONSOLE in UMP

    Posted Oct 10, 2019 07:39 AM
    Instead of "and", use "or" in the filter.

    Example: From your above screenshot.

          User Tag 1 --> is --> Nirvana
    or   User Tag 1 --> is --> ONE
    .
    .
    .
    .
    or   User Tag 2 --> is --> Siebel

    If it is based on a probe. Below is an example.



    ------------------------------
    Thank you.
    Rajashekar
    ------------------------------



  • 5.  RE: Creating a ALARM CONSOLE in UMP

    Posted Oct 10, 2019 03:36 AM
    If i use only one user_tag1, it works but for muti user_tag1's it isnt ..

    ------------------------------
    System Analyst
    DXC Technology
    ------------------------------



  • 6.  RE: Creating a ALARM CONSOLE in UMP

    Posted Oct 10, 2019 03:47 AM
    If I enter multiple filters, this works fine with me (My user_tag1 is not filled in to try with that field)
    multi_filter



  • 7.  RE: Creating a ALARM CONSOLE in UMP

    Posted Oct 10, 2019 03:56 AM
    Is there any way of getting them as per user tags ?

    ------------------------------
    System Analyst
    DXC Technology
    ------------------------------



  • 8.  RE: Creating a ALARM CONSOLE in UMP
    Best Answer

    Broadcom Employee
    Posted Oct 10, 2019 06:21 PM

    Siddharth -

    Unfortunately, with the current design of the alarm filter, you cannot get the filter logic you need to work using the filter you are trying to use.  You really want a filter like the following (notice the parenthesis inserted):

    (probe = sqlserver and user_tag_2 contains UT) or (probe = sqlserver and user_tag_2 contains UAT) or (probe = sqlserver and user_tag_2 contains SIT)

    What you are actually getting is the following filter (notice there are no parenthesis):

    probe = sqlserver and user_tag_2 contains UT or probe = sqlserver and user_tag_2 contains UAT or probe = sqlserver and user_tag_2 contains SIT


    I believe that this will only build a list of alarms from the sqlserver probe where the user_tag_2 is set to UT

    The following filter might work if I remember how logical expressions are evaluated correctly:

    user_tag_2 contains UT or user_tag_2 contains UAT or user_tag_2 contains SIT and probe = sqlserver



    ------------------------------
    Kathy Maguire
    Technical Support Engineer 4
    Broadcom
    ------------------------------



  • 9.  RE: Creating a ALARM CONSOLE in UMP

    Posted Oct 11, 2019 09:50 AM
    probe = sqlserver and user_tag_2 contains UT or probe = sqlserver and user_tag_2 contains UAT or probe = sqlserver and user_tag_2 contains SIT

    This is taking all the conditions and giving the results. Tested using two probes in the same manner and see the result.


    This has listed all the alarms matching the defined criteria.


    ------------------------------
    Thank you.
    Rajashekar
    ------------------------------