I have a request from a colleague to modify the TOP 10 view so that it only shows "Yellow" and "Red".
1) Better Way to Filter Based on Threshold Variables?
Some of the resources are easy to filter - like "Top xx Nodes by Current Response Time"
Filter = ResponseTime > 500
But, is there a better way of doing by using a variable like:
Filter = ResponseTime > WarningThreshold
2a) Some I can't figure out how to best filter:
I want to filter "Top 10 Nodes by Percent Memory Used" based on "VolumePercentUsed" because it looks to me as if this resource is based on Physical Memory Used.
But, I get the dreaded SQL syntax error every time I try to use VolumePercentUsed.
I resorted to this but it's not 100% accurate because it's based on the Node's Memory instead of the Physical Memory:
Filter = status <> 1 and PercentMemoryUsed >=97
I tried VolumePercentUsed, Volumes.VolumePercentUsed and both give the SQL Syntax error.
2b) "Top XX Monitored Processes by CPU Load"
I can't figure out how to get the value for the monitoredprocesses' CPULoad?
2c) "Top XX Components by Response Time"
Similarly, I can't figure out how to get the Response Time for the Component to filter by?