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
memmon was not able to find defined process on FreeBSD 13/14 I changed superlance/memmon.py self.pstreecommand to use multiply -o
I believe this will work also on Linux freebsd.patch
The text was updated successfully, but these errors were encountered:
freebsd.patch index 8be2478..04771b3 100644 --- a/superlance/memmon.py +++ b/superlance/memmon.py @@ -114,7 +114,7 @@ class Memmon: self.stdout = sys.stdout self.stderr = sys.stderr self.pscommand = 'ps -orss= -p %s' - self.pstreecommand = 'ps ax -o "pid= ppid= rss="' + self.pstreecommand = 'ps ax -o "pid=" -o "ppid=" -o "rss="' self.mailed = False # for unit tests def runforever(self, test=False):
freebsd.patch
index 8be2478..04771b3 100644 --- a/superlance/memmon.py +++ b/superlance/memmon.py @@ -114,7 +114,7 @@ class Memmon: self.stdout = sys.stdout self.stderr = sys.stderr self.pscommand = 'ps -orss= -p %s' - self.pstreecommand = 'ps ax -o "pid= ppid= rss="' + self.pstreecommand = 'ps ax -o "pid=" -o "ppid=" -o "rss="' self.mailed = False # for unit tests def runforever(self, test=False):
Sorry, something went wrong.
No branches or pull requests
memmon was not able to find defined process on FreeBSD 13/14
I changed superlance/memmon.py self.pstreecommand to use multiply -o
I believe this will work also on Linux
freebsd.patch
The text was updated successfully, but these errors were encountered: