Technical Tip: How to change disk utilization threshold on Health page
| Description | This article describes how to change the disk utilization threshold on the health page. |
| Scope | FortiSIEM. |
| Solution | By default, the Admin-> Health -> Cloud Health page shows a disk in warning state when the usage of the disk is over 65 per cent. This is important to check the disk usage to avoid FortiSIEM failures. However, in some cases and especially with hardware devices, even after a deep cleaning of the disk, the normal usage remains above that limit of 65 percent. In that case, it is possible to modify this threshold to avoid having the warning status displayed by following the next steps:
/opt/phoenix/phscripts/bin/get-fsm-metrics.py --enable-only "diskUsage" -j /tmp/disk_test.json cat /tmp/disk_test.json | python -m json.tool {
vi /opt/phoenix/phscripts/bin/get-fsm-metrics.py
DISK_UTIL_LOW=65 to DISK_UTIL_LOW=75
/opt/phoenix/phscripts/bin/get-fsm-metrics.py --enable-only "diskUsage" -j /tmp/disk_test.json cat /tmp/disk_test.json | python -m json.tool
|

