CSS is your friend! Here are just a couple of things you can do with CSS <panel depends="$stayhidden$">
<html>
<style>
#tiles table tbody tr{
margin-right:10px;
margin-bottom:10px;
}
#tiles table tbody tr td{
width: 180px;
text-align: center;
}
#tiles table tbody tr td[data-cell-index="1"]{
font-size: 2em;
}
#tiles table tbody td div.multivalue-subcell[data-mv-index="1"]{
display: none;
}
</style>
</html>
</panel>
<panel id="tiles">
<table>
<search>
<query>| makeresults
| eval _raw="Environment,Application,Hostname,Status
EUAT,MC,H1,RUNNING
EUAT,MC,H2,DOWN
DEV,IC,H4,ERROR
UAT,IC,HK,RUNNING"
| multikv forceheader=1
| table Environment Application Hostname Status
| eval Application=mvappend(Application,case(Status="RUNNING","GREEN",Status="DOWN","RED",Status="ERROR","ORANGE"))</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<option name="drilldown">none</option>
<option name="refresh.display">progressbar</option>
<format type="color">
<colorPalette type="expression">case (match(value,"RED"), "#ff0000",match(value,"ORANGE"), "#ff8000",match(value,"GREEN"),"#00ff00",true(),"#ffffff")</colorPalette>
</format>
</table>
</panel>
... View more