Hi,
I'm trying to create a chart that finds the top interfaces based on error tx/rx volume across multiple nodes but that also ONLY shows interfaces of certain types (for this chart, we don't really care about serial or t1 interfaces, for example, even though large #s of those exist across the nodes in question). To create this, I took the existing "Top 10 Interfaces by Errors & Discards" chart and added this exclude SQL filter:
FullName Not Like '*t1*' AND FullName Not Like '*Bonding Group*' AND FullName Not Like '*Serial*'
This has worked as far as filtering out the interfaces I do not want to see; however, I'd also like to add to this filter to have it only show interfaces based on errors, NOT discards. Right now, it seems to be sorting primarily in discard activity, but discards aren't a red flag for me since our QoS policies will result in high numbers of valid discards.
Is there a string I can add to the filter to have it just sort high-error interfaces and ignore anything from the discards?