This is a global modern dashboard that shows all nodes that are current muted or unmanaged, scheduled for future alert suppression, and have reoccurring alert suppression.
The dashboard provides:
- System Name <with vendor icon & node details link>.
- Schedule type.
- Alert Suppression or Maintenance Window
- Suppressed By
- Suppression Description
- Suppression Reason
- Scheduled Date with icon
- Unmanaged with status icon
- Start Unmanage
- End Unmanage
- Muted with status icon
- Start Mute
- End Mute
This dashboard can be recycled as a team specific dashboard by applying additional where filters. Example of where filters can be:
Default
where s.ScheduleTask.Enabled = 'TRUE'
and (s.ScheduleTask.NextRun is NOT NULL)
or (n.UnManaged != 'False')
or (z.ID like '%')
By a custom property
where (n.CustomProperties.Responsible_Team in ('Network_Operations', ’Network_Engineering'))
and (s.ScheduleTask.Enabled = 'TRUE'
and (s.ScheduleTask.NextRun is NOT NULL)
or (n.UnManaged != 'False')
or (z.ID like '%'))
By IP address range
where (n.IPAddress like '10.10.100.%')
and (s.ScheduleTask.Enabled = 'TRUE'
and (s.ScheduleTask.NextRun is NOT NULL)
or (n.UnManaged != 'False')
or (z.ID like '%'))
Here's what the dashboard looks like