In Orion I've created Groups for each customer. Each group contains all the network devices dedicated to that customer's environment. I'm trying to show Top XX web resources (Interface Utilization, Traffic, Errors/Discards, etc) on the Group Details page that contains only the nodes in the currently viewed Group.
I can easily do a SQL filter like:
SysName Like '12345_*'
where 12345=custID since we prefix all our device names with the customerID. The problem is then customer 12345 devices show up on ALL Group Detail pages.
All groups names are also prefixed with the customerID like so: "12345 Customer Name" so I was thinking I could possibly use something like:
SysName Like '${GroupName}*'
But this doesn't seem to work. I get a blank TopXX report. Not even sure if the var ${GroupName} is valid in a SQL filter.
Any ideas how I can tell it to show only group members for the currently viewed group in the Top XX web resource on the Group Details page?