Network Management

Mute IPAM events

This article provides steps on how to mute the IPAM events.

First published date

6/23/2026 4:02 PM

Last published date

6/23/2026 5:59 PM

Overview

By design, IPAM almost enabled all events after 2026.1.1, causing a flood of events in the events view, especially IPAM Subnet Scan Information and IPAM IP Node Changed.

IPAM IP Node Changed - EventType = 942

IPAM Subnet Scan Information - EventType = 960 

What this does:

  • Mute = true mutes the event type.
  • Record = false stops it from being written normally to events.
  • Notify = false disables notification on that event type.
     

 

Product section

IP Address Manager

Resolution

We can "MUTE" the event via SQL Query and directly update it from Database Manager.

SQL Query.

IPAM IP Node Changed:


-- 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.


UPDATE EventTypes SET Notify = 'false', Record = 'false', Mute = 'true' WHERE EventType = 942;

 

IPAM Subnet Scan Information:

-- 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.


UPDATE EventTypes SET Notify = 'false', Record = 'false', Mute = 'true' WHERE EventType = 960;

 

Database Manager:

  • RDP to the SolarWinds server.
  • Open Database Manager from the SolarWinds Platform start menu group.
  • Click Add default server.
  • Expand the SolarWinds database.
  • Look for the EventTypes Table.
  • Use the query below to display all IPAM events, including the EventType, Name, Notify, Record, and Mute columns.
  • Click Enable table editing.
  • Use the checkbox to apply the changes, once done click Enable table editing to save it

-- 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 EventType, Name, Notify, Record, Mute FROM [dbo].[EventTypes]
Where Name like '%IPAM%'