You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.0 KiB

<panel>
<chart>
<title>Storage Used (%)</title>
<search>
<query>
`itsi_os_module_indexes` host=$host$ tag=oshost tag=performance tag=storage storage_free_percent=* mount=*
| eval storage_used_percent = 100 - storage_free_percent
| timechart eval(round(avg(storage_used_percent), 2)) as "Disk Space Used (%)" by mount
</query>
<earliest>$earliest$</earliest>
<latest>$latest$</latest>
</search>
<option name="charting.chart">area</option>
<!-- <option name="charting.axisLabelsX.majorLabelVisibility">hide</option> -->
<option name="charting.axisTitleY.visibility">collapsed</option>
<option name="charting.axisTitleX.visibility">collapsed</option>
<option name="charting.chart.nullValueMode">connect</option>
<option name="charting.chart.showDataLabels">none</option>
<option name="charting.axisY.maximumNumber">100</option>
<option name="charting.legend.placement">top</option>
<option name="refresh.time.visible">false</option>
</chart>
</panel>