Add cross-platform health check fallbacks for memory and load#60
Open
glm-5-2 wants to merge 1 commit into
Open
Add cross-platform health check fallbacks for memory and load#60glm-5-2 wants to merge 1 commit into
glm-5-2 wants to merge 1 commit into
Conversation
- check_memory_usage: fallback to psutil or macOS vm_stat/sysctl when /proc/meminfo unavailable - check_load_average: fallback to os.getloadavg() or psutil when /proc/loadavg unavailable - Non-Linux environments now report useful values instead of generic warnings - Maintains backward compatibility with existing Linux /proc behavior - New helper functions: _get_memory_info(), _get_load_average()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bounty: $50 — Cross-platform health check fallbacks
Issue
#1
What this does
Adds cross-platform fallbacks to check_memory_usage() and check_load_average() so non-Linux environments (macOS, etc.) report useful values instead of generic warnings.
Changes
Backward compatibility