Hello @splunker011 Try use this code: <table> <title>TABLESPACE_FREESPACE</title> <search> <query> index="database" source="tables" | eval BYTES_FREE = replace(BYTES_FREE, ",", "") | eval BYTES_USED = replace(BYTES_USED, ",", "") | eval GB_USED = BYTES_USED / (1024 * 1024 * 1024) | eval GB_FREE = BYTES_FREE / (1024 * 1024 * 1024) | eval GB_USED = floor(GB_USED * 100) / 100 | eval GB_FREE = floor(GB_FREE * 100) / 100 | eval CALCULATED_PERCENT_FREE = (GB_FREE / (GB_USED + GB_FREE)) * 100 | eval CALCULATED_PERCENT_FREE = floor(CALCULATED_PERCENT_FREE * 10) / 10 | rename TABLESPACE_NAME as "Tablespace", GB_USED as "Used Space (Gb)", GB_FREE as "Free Space (Gb)", PERCENT_FREE as "Free Space (%)" | table "Tablespace" "Used Space (Gb)" "Free Space (Gb)" "Free Space (%)" </query> <earliest>-24h@h</earliest> <latest>now</latest> </search> <option name="count">21</option> <option name="drilldown">none</option> <option name="wrap">false</option> <!-- Use rangeMap to define colors based on "Free Space (%)" --> <format type="color" field="Free Space (%)"> <rangeMap> <range min="0" max="20" color="#FF0000"/> <!-- Red for low free space --> <range min="20" max="50" color="#FFA500"/> <!-- Orange for medium --> <range min="50" max="100" color="#00FF00"/> <!-- Green for high free space --> </rangeMap> </format> </table> Have a nice day,
... View more