I need some help writing a filter for my Down Interface resource.
I only want to see interfaces that went down during the last 24 or 48 hours.
Thanks
Nodes.Status=1 AND DATEDIFF(Week, InterfaceLastChange, getdate()) = 0
Nodes.Status=1 {so you only see interfaces that are on nodes that are currently UP}
I use Week instead of Day, (Day, Week, Month, and Year are valid)
Hope that helps