ryandg, in gathering the information for you request, I identified the source of my issue.
The code for the input that was on the 'hosts' page was teh following:
<input type="dropdown" token="hostseverity" searchWhenChanged="true">
<label>Severity</label>
<choice value="threat>0 AND certainty>0">All</choice>
<choice value="threat>=50 certainty>=50">Critical</choice>
<choice value="threat>=50 certainty<=50">High</choice>
<choice value="threat<=50 certainty>=50">Medium</choice>
<choice value="threat>0 AND threat<50 certainty>0 AND certainty<50">Low</choice>
<initialValue>threat>0 AND certainty>0</initialValue>
</input>
In the drilldown, I actually provided the named and not the value. So by changing
hosts?form.hostseverity=High
to:
hosts?form.hostseverity=threat%3E%3D50%20certainty%3C%3D50
I solved my problem.
Thanks for your help.
... View more