Network Management
Mute IPAM events
This article provides steps on how to mute the IPAM events.
First published date
Last published date
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 = truemutes the event type.Record = falsestops it from being written normally to events.Notify = falsedisables notification on that event type.
Product section
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.
|
|
IPAM Subnet Scan Information: -- Scripts are not supported under any SolarWinds support program or service.
|
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. SELECT EventType, Name, Notify, Record, Mute FROM [dbo].[EventTypes] |