Usage Meter 9.0.x
This is due to CAP Appliance Management Monitoring API timeout to query Disk / Network monitorig status from DB.
This is known issue and will fix in future release.
Workaround:
Delete old data from SQLite DB.
Follow steps below to clean up disk and network-related monitoring data older than 30 days.
su
cp /var/vmware/applmgmt/appliance_stats.sqlite <Location_of_your_choice>
sqlite3 /var/vmware/applmgmt/appliance_stats.sqlite
DELETE FROM stat_storage WHERE timestamp < (strftime('%s', 'now') - (30 * 86400));
DELETE FROM stat_network WHERE timestamp < (strftime('%s', 'now') - (30 * 86400));
.quit