Yep.. changing from dashboard to form does work. Thanks a ton. I have one more question in continuation. Is it possible to assign different font sizes to different single values in the same form? I tried by assignining an "additionalClass" for one of single value rows but it didn't work. It changed the font for both the single value fields.
<form>
<label>Single Value Dasboard</label>
<fieldset submitButtom="false">
<html>
<style type="text/css">
.single-value .single-result {
font-size: 50px;
}
.CriticalStat {
font-size: 24px;
}
</style>
</html>
</fieldset>
<row>
<panel>
<single>
<title>TotalCount</title>
<searchString>index=_internal | eval cur=if(_time > relative_time(now(),"-15m"),1,0) | stats count by cur | sort -cur</searchString>
<earliestTime>-24h@h</earliestTime>
<latestTime>now</latestTime>
<option name="field">count</option>
<option name="afterLabel">Messages Processed in Last 24 hours</option>
<option name="drilldown">none</option>
<option name="linkView">search</option>
</single>
</panel>
</row>
<row>
<panel>
<single>
<title>TotalCount2</title>
<searchString>index=_internal | eval cur=if(_time > relative_time(now(),"-15m"),1,0) | stats count by cur | sort -cur</searchString>
<earliestTime>-48h@h</earliestTime>
<latestTime>now</latestTime>
<option name="field">count</option>
<option name="afterLabel">Messages Processed in Last 48 hours</option>
<option name="additionalClass">CriticalStat</option>
<option name="drilldown">none</option>
<option name="linkView">search</option>
</single>
</panel>
</row>
</form>
... View more