OK, 3rd time lucky [| inputlookup host.csv | table host] `diskspace` | eval host=upper(host) | eval FreeSpace = round(FreeSpaceKB/1024/1024,1) | rangemap field=FreeSpace low=0-30 elevated=31-99 high= 100-200 default=severe | eval FreeSpace = FreeSpace." GB" | append [ | makeresults | eval _time = 0 | eval host="$tok_filterhost$" | range="guarded" | eval NoSpace = "No event for this host" ] | search host=$tok_filterhost$ | stats latest(FreeSpace) as FreeSpace latest(range) AS range make sure you turn off use colors in the Viz format , adjust your color levels accordingly in the rangemap. low is green, elevated is yellow, severe is red, guarded will be blue. Annotation (3).png
... View more