ONTAP 9.12.1 commands

50←PDF
  • ONTAP 9.12.1 commands(CA08871-263en.pdf)
  • event filter delete

    Delete existing event filters

    Availability: This command is available to cluster administrators at the admin privilege level.

    Description

    The event filter delete command deletes an existing event filter, along with all its rules.

    The system-defined event filters cannot be deleted.

    For more information, see the event filter create command.

    Parameters

    -filter-name <text> - Filter Name

    Use this mandatory parameter to specify the name of the event filter to delete.

    Examples

    The following example deletes an event filter named filter1:

    cluster1::> event filter show
    Filter Name Rule     Rule      Message Name           SNMP Trap Type  Severity
                Position Type
    ----------- -------- --------- ---------------------- --------------- --------
    default-trap-events
                1        include   *                      *               EMERGENCY, ALERT
                2        include   *                      Standard, Built-in
                                                                          *
                3        exclude   *                      *               *
    filter1
                1        include   wafl.*                 *               EMERGENCY
                2        exclude   *                      *               *
    important-events
                1        include   *                      *               EMERGENCY, ALERT
                2        include   callhome.*             *               ERROR
                3        exclude   *                      *               *
    no-info-debug-events
                1        include   *                      *               EMERGENCY, ALERT, ERROR, NOTICE
                2        exclude   *                      *               *
    10 entries were displayed.
    
    cluster1::> event filter delete -filter-name filter1
    
    cluster1::> event filter show
    Filter Name Rule     Rule      Message Name           SNMP Trap Type  Severity
                Position Type
    ----------- -------- --------- ---------------------- --------------- --------
    default-trap-events
                1        include   *                      *               EMERGENCY, ALERT
                2        include   *                      Standard, Built-in
                                                                          *
                3        exclude   *                      *               *
    important-events
                1        include   *                      *               EMERGENCY, ALERT
                2        include   callhome.*             *               ERROR
                3        exclude   *                      *               *
    no-info-debug-events
                1        include   *                      *               EMERGENCY, ALERT, ERROR, NOTICE
                2        exclude   *                      *               *
    8 entries were displayed.
    Top of Page