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
部分系统(我这只发现ubuntu 1404)已经不再支持 node_memory_MemAvailable_bytes 了,导致可用内存、已用内存、内存使用率不不显示
node_memory_MemAvailable_bytes
需要将 node_memory_MemAvailable_bytes 更新为 node_memory_MemFree_bytes
node_memory_MemFree_bytes
The text was updated successfully, but these errors were encountered:
根据官方 issuse 支持 MemAvailable 参数的最低内核版本为 3.1.4,而Linux中,严格来说:可用内存= free + buff + cache, 但是 buff 是块设备的缓冲,所以建议将 MemAvailable 配置为 :free+cache,即:node_memory_MemFree_bytes + node_memory_Cached_bytes
MemAvailable
free
buff
cache
node_memory_Cached_bytes
Sorry, something went wrong.
Duplicate of #18
No branches or pull requests
部分系统(我这只发现ubuntu 1404)已经不再支持
node_memory_MemAvailable_bytes
了,导致可用内存、已用内存、内存使用率不不显示需要将
node_memory_MemAvailable_bytes
更新为node_memory_MemFree_bytes
The text was updated successfully, but these errors were encountered: