fix/TS-5533-update-os-info-when-monitor-fix-check

This commit is contained in:
dmchen 2024-10-16 04:59:02 +00:00
parent d0a0d578bd
commit 2520eead48
1 changed files with 4 additions and 1 deletions

View File

@ -74,7 +74,10 @@ void dmGetMonitorSystemInfo(SMonSysInfo *pInfo) {
} }
pInfo->mem_total = tsTotalMemoryKB; pInfo->mem_total = tsTotalMemoryKB;
pInfo->disk_engine = 0; pInfo->disk_engine = 0;
osUpdate(); code = osUpdate();
if (code != 0) {
dError("failed to update os info since %s", tstrerror(code));
}
pInfo->disk_used = tsDataSpace.size.used; pInfo->disk_used = tsDataSpace.size.used;
pInfo->disk_total = tsDataSpace.size.total; pInfo->disk_total = tsDataSpace.size.total;
code = taosGetCardInfoDelta(&pInfo->net_in, &pInfo->net_out); code = taosGetCardInfoDelta(&pInfo->net_in, &pInfo->net_out);