アプライアンスを処理すると、誤った障害が発生することがあります。不要な SR の送信を回避するために、サービスを実行している間、すべての通知を一時停止できます。
問題通知が一時停止された場合の説明については、Suspending Problem Notification in Oracle ZFS Storage Appliance Customer Service Manualを参照してください。
次のコマンドを使用して、問題の通知が一時停止されているかどうかを確認します。
リクエストの例:
GET /api/problem/v2/suspend_notification HTTP/1.1 Host: zfs-storage.example.com:215 Accept: application/json
結果例:
period プロパティーは、通知の一時停止の残り時間 (分) を示します。
{ "suspend_notification": { "href": "/api/problem/v2/suspend_notification", "suspend_notification": "enabled", "period": 472 } }
次のコマンドを使用して、問題の通知を一時停止します。操作が成功すると、HTTP コード 202 (Accepted) を返します。
リクエストの例:
PUT /api/problem/v2/suspend_notification/enable HTTP/1.1 Host: zfs-storage.example.com:215 Accept: application/json
次のコマンドを使用して、問題の通知を再開します。操作が成功すると、HTTP コード 202 (Accepted) を返します。
リクエストの例:
PUT /api/problem/v2/suspend_notification/disable HTTP/1.1 Host: zfs-storage.example.com:215 Accept: application/json