ONTAP 9.13

to English version

EMSイベント マッピング モデル

ONTAP EMSイベントの送信先をマッピングする場合は、event filterevent notificationevent notification destination の各コマンド セットを使用して複数のフィールドでパターン マッチングを実行する、拡張性に優れたイベント フィルター モデルを使用することを推奨します。

廃止されたコマンドを使用してEMSマッピングが設定されている場合は、event filterevent notificationevent notification destination の各コマンド セットを使用するようにマッピングを更新する必要があります。

イベントの送信先には次の2種類があります。

  1. システム定義の送信先:システム定義のイベント送信先(デフォルトで作成)は次の5つです。

    • allevents

    • asup

    • criticals

    • pager

    • traphost

      システム定義の送信先の一部は、特別な目的に使用されます。たとえば、asupは、AutoSupportメッセージを生成する目的で、callhome.* イベントをONTAPのAutoSupportモジュールに転送します。

  2. ユーザー定義の送信先event destination create コマンドを使用して手動で作成します。

    cluster-1::event*> destination show
                                                                     Hide
    Name             Mail Dest.        SNMP Dest.         Syslog Dest.       Params
    ---------------- ----------------- ------------------ ------------------ ------
    allevents        -                 -                  -                  false
    asup             -                 -                  -                  false
    criticals        -                 -                  -                  false
    pager            -                 -                  -                  false
    traphost         -                 -                  -                  false
    5 entries were displayed.
    +
    cluster-1::event*> destination create -name test -mail test@xyz.com
    This command is deprecated. Use the "event filter", "event notification destination" and "event notification" commands, instead.
    +
    cluster-1::event*> destination show
    +                                                                     Hide
    Name             Mail Dest.        SNMP Dest.         Syslog Dest.       Params
    ---------------- ----------------- ------------------ ------------------ ------
    allevents        -                 -                  -                  false
    asup             -                 -                  -                  false
    criticals        -                 -                  -                  false
    pager            -                 -                  -                  false
    test             test@xyz.com      -                  -                  false
    traphost         -                 -                  -                  false
    6 entries were displayed.

廃止されたモデルでは、event route add-destinations コマンドを使用してEMSイベントが個別に送信先にマッピングされます。

cluster-1::event*> route add-destinations -message-name raid.aggr.* -destinations test
This command is deprecated. Use the "event filter", "event notification destination" and "event notification" commands, instead.
4 entries were acted on.

cluster-1::event*> route show -message-name raid.aggr.*
                                                               Freq    Time
Message                          Severity       Destinations   Threshd Threshd
-------------------------------- -------------- -------------- ------- -------
raid.aggr.autoGrow.abort         NOTICE         test           0       0
raid.aggr.autoGrow.success       NOTICE         test           0       0
raid.aggr.lock.conflict          INFORMATIONAL  test           0       0
raid.aggr.log.CP.count           DEBUG          test           0       0
4 entries were displayed.

拡張性に優れた新しいEMSイベント通知メカニズムでは、イベント フィルターとイベント通知送信先を使用します。新しいイベント通知メカニズムの詳細については、次の技術情報アーティクルを参照してください。

diagram of event models

Top of Page