We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
建议将host_check.sh中checkMem的内存条件放宽一些,目前是查询free空间: $(awk '($1 == "MemFree:"){print $2/1048576}' /proc/meminfo 2>&1) 推荐改为available空间: $(awk '($1 == "MemAvailable:"){print $2/1048576}' /proc/meminfo 2>&1)
$(awk '($1 == "MemFree:"){print $2/1048576}' /proc/meminfo 2>&1)
$(awk '($1 == "MemAvailable:"){print $2/1048576}' /proc/meminfo 2>&1)
The text was updated successfully, but these errors were encountered:
可根据实际机器资源,调整 check 脚本中的内存大小
Sorry, something went wrong.
No branches or pull requests
建议将host_check.sh中checkMem的内存条件放宽一些,目前是查询free空间:
$(awk '($1 == "MemFree:"){print $2/1048576}' /proc/meminfo 2>&1)
推荐改为available空间:
$(awk '($1 == "MemAvailable:"){print $2/1048576}' /proc/meminfo 2>&1)
The text was updated successfully, but these errors were encountered: