Network Management

How to determine who muted an alert

This article shows how to determine who muted an alert using the Database Manager.

First published date

4/23/2020 12:11 AM

Last published date

11/22/2022 4:49 PM

Overview

An alert can be muted on either node or interface and will need to determine the user account who performed the action.

Product section

Network Performance Monitor

Resolution

  1. RDP to the Orion Server
  2. Launch the Database Manager
  3. Click on Add Orion Server button
  4. Right-click on OrionDB and select New query...
  5. Paste the SQL query below and select Execute Query:
-- Scripts are not supported under any SolarWinds support program or service.
-- Scripts are provided AS IS without warranty of any kind. SolarWinds further
-- disclaims all warranties including, without limitation, any implied warranties
-- of merchantability or of fitness for a particular purpose. The risk arising
-- out of the use or performance of the scripts and documentation stays with you.
-- In no event shall SolarWinds or anyone else involved in the creation,
-- production, or delivery of the scripts be liable for any damages whatsoever
-- (including, without limitation, damages for loss of business profits, business
-- interruption, loss of business information, or other pecuniary loss) arising
-- out of the use of or inability to use the scripts or documentation.

SELECT TOP 1000 * FROM [dbo].[AuditingEvents]

where auditeventmessage like '%mut%' and auditeventmessage like '%NodeName/InterfaceName%' ORDER BY TimeLoggedUTC DESC

You will get similar results below: