# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""psutil is a cross-platform library for retrieving information on
running processes and system utilization (CPU, memory, disks, network,
sensors) in Python. Supported platforms:
- Linux
- Windows
- macOS
- FreeBSD
- OpenBSD
- NetBSD
- Sun Solaris
- AIX
Supported Python versions are cPython 3.7+ and PyPy.
"""
from __future__ import annotations
import collections
import contextlib
import datetime
import functools
import os
import signal
import socket
import subprocess
import sys
import threading
import time
import warnings
from typing import TYPE_CHECKING as _TYPE_CHECKING
try:
import pwd
except ImportError:
pwd = None
from . import _common
from . import _ntuples as _ntp
from ._common import AIX
from ._common import BSD
from ._common import FREEBSD
from ._common import LINUX
from ._common import MACOS
from ._common import NETBSD
from ._common import OPENBSD
from ._common import OSX # deprecated alias
from ._common import POSIX
from ._common import SUNOS
from ._common import WINDOWS
from ._common import AccessDenied
from ._common import Error
from ._common import NoSuchProcess
from ._common import TimeoutExpired
from ._common import ZombieProcess
from ._common import debug
from ._common import memoize_when_activated
from ._common import wrap_numbers as _wrap_numbers
from ._enums import BatteryTime
from ._enums import ConnectionStatus
from ._enums import NicDuplex
from ._enums import ProcessStatus
if _TYPE_CHECKING:
from collections.abc import Collection
from typing import Any
from typing import Callable
from typing import Generator
from typing import Iterator
from ._ntuples import pconn
from ._ntuples import pcputimes
from ._ntuples import pctxsw
from ._ntuples import pfootprint
from ._ntuples import pfullmem
from ._ntuples import pgids
from ._ntuples import pheap
from ._ntuples import pio
from ._ntuples import pionice
from ._ntuples import pmem
from ._ntuples import pmem_ex
from ._ntuples import pmmap_ext
from ._ntuples import pmmap_grouped
from ._ntuples import popenfile
from ._ntuples import ppagefaults
from ._ntuples import pthread
from ._ntuples import puids
from ._ntuples import sbattery
from ._ntuples import sconn
from ._ntuples import scpufreq
from ._ntuples import scpustats
from ._ntuples import scputimes
from ._ntuples import sdiskio
from ._ntuples import sdiskpart
from ._ntuples import sdiskusage
from ._ntuples import sfan
from ._ntuples import shwtemp
from ._ntuples import snetio
from ._ntuples import snicaddr
from ._ntuples import snicstats
from ._ntuples import sswap
from ._ntuples import suser
from ._ntuples import svmem
from ._pswindows import WindowsService
if LINUX:
# This is public API and it will be retrieved from _pslinux.py
# via sys.modules.
PROCFS_PATH = "/proc"
from . import _pslinux as _psplatform
from ._enums import ProcessIOPriority
from ._enums import ProcessRlimit
elif WINDOWS:
from . import _pswindows as _psplatform
from ._enums import ProcessIOPriority
from ._enums import ProcessPriority
elif MACOS:
from . import _psosx as _psplatform
elif BSD:
from . import _psbsd as _psplatform
if FREEBSD:
from ._enums import ProcessRlimit
elif SUNOS:
from . import _pssunos as _psplatform
# This is public writable API which is read from _pslinux.py and
# _pssunos.py via sys.modules.
PROCFS_PATH = "/proc"
elif AIX:
from . import _psaix as _psplatform
# This is public API and it will be retrieved from _pslinux.py
# via sys.modules.
PROCFS_PATH = "/proc"
else: # pragma: no cover
msg = f"platform {sys.platform} is not supported"
raise NotImplementedError(msg)
# fmt: off
__all__ = [
# exceptions
"Error", "NoSuchProcess", "ZombieProcess", "AccessDenied",
"TimeoutExpired",
# constants
"version_info", "__version__",
"AF_LINK",
"BSD", "FREEBSD", "LINUX", "NETBSD", "OPENBSD", "MACOS", "OSX", "POSIX",
"SUNOS", "WINDOWS", "AIX",
# classes
"Process", "Popen",
# functions
"pid_exists", "pids", "process_iter", "wait_procs", # proc
"virtual_memory", "swap_memory", # memory
"cpu_times", "cpu_percent", "cpu_times_percent", "cpu_count", # cpu
"cpu_stats", "getloadavg", # "cpu_freq",
"net_io_counters", "net_connections", "net_if_addrs", # network
"net_if_stats",
"disk_io_counters", "disk_partitions", "disk_usage", # disk
# "sensors_temperatures", "sensors_battery", "sensors_fans" # sensors
"users", "boot_time", # others
]
# fmt: on
__all__.extend(_psplatform.__extra__all__)
_globals = globals()
def _export_enum(cls):
__all__.append(cls.__name__)
for name, member in cls.__members__.items():
if name not in _globals: # noqa: F821
_globals[name] = member # noqa: F821
__all__.append(name)
# Populate global namespace with enums and CONSTANTs.
_export_enum(ProcessStatus)
_export_enum(ConnectionStatus)
_export_enum(NicDuplex)
_export_enum(BatteryTime)
if LINUX or WINDOWS:
_export_enum(ProcessIOPriority)
if WINDOWS:
_export_enum(ProcessPriority)
if LINUX or FREEBSD:
_export_enum(ProcessRlimit)
if LINUX or SUNOS or AIX:
__all__.append("PROCFS_PATH")
del _globals, _export_enum
AF_LINK = _psplatform.AF_LINK
__author__ = "Giampaolo Rodola'"
__version__ = "8.0.0"
version_info = tuple(int(num) for num in __version__.split('.'))
_timer = getattr(time, 'monotonic', time.time)
_TOTAL_PHYMEM = None
_LOWEST_PID = None
_SENTINEL = object()
# Sanity check in case the user messed up with psutil installation
# or did something weird with sys.path. In this case we might end
# up importing a python module using a C extension module which
# was compiled for a different version of psutil.
# We want to prevent that by failing sooner rather than later.
# See: https://github.com/giampaolo/psutil/issues/564
if int(__version__.replace('.', '')) != getattr(
_psplatform.cext, 'version', None
):
msg = f"version conflict: {_psplatform.cext.__file__!r} C extension "
msg += "module was built for another version of psutil"
if hasattr(_psplatform.cext, 'version'):
v = ".".join(list(str(_psplatform.cext.version)))
msg += f" ({v} instead of {__version__})"
else:
msg += f" (different than {__version__})"
what = getattr(
_psplatform.cext,
"__file__",
"the existing psutil install directory",
)
msg += f"; you may try to 'pip uninstall psutil', manually remove {what}"
msg += " or clean the virtual env somehow, then reinstall"
raise ImportError(msg)
# =====================================================================
# --- Utils
# =====================================================================
if hasattr(_psplatform, 'ppid_map'):
# Faster version (Windows and Linux).
_ppid_map = _psplatform.ppid_map
else: # pragma: no cover
def _ppid_map():
"""Return a `{pid: ppid, ...}` dict for all running processes in
one shot. Used to speed up `Process.children()`.
"""
ret = {}
for pid in pids():
try:
ret[pid] = _psplatform.Process(pid).ppid()
except (NoSuchProcess, ZombieProcess):
pass
return ret
def _pprint_secs(secs):
"""Format seconds in a human readable form."""
now = time.time()
secs_ago = int(now - secs)
fmt = "%H:%M:%S" if secs_ago < 60 * 60 * 24 else "%Y-%m-%d %H:%M:%S"
return datetime.datetime.fromtimestamp(secs).strftime(fmt)
def _check_conn_kind(kind):
"""Check net_connections()'s `kind` parameter."""
kinds = tuple(_common.conn_tmap)
if kind not in kinds:
msg = f"invalid kind argument {kind!r}; valid ones are: {kinds}"
raise ValueError(msg)
# =====================================================================
# --- Process class
# =====================================================================
def _use_prefetch(method):
"""Decorator returning cached values from `process_iter(attrs=...)`.
When `process_iter()` is called with an *attrs* argument, it
pre-fetches the requested attributes via `as_dict()` and stores
them in `Process._prefetch`. This decorator makes the decorated
method return the cached value (if present) instead of issuing
a new system call.
"""
@functools.wraps(method)
def wrapper(self, *args, **kwargs):
if not args and not kwargs:
try:
return self._prefetch[method.__name__]
except KeyError:
pass
return method(self, *args, **kwargs)
return wrapper
[docs]
class Process:
"""Represents an OS process identified by a PID.
If *pid* arg is omitted, the current process PID (`os.getpid()`) is
used. Raises `NoSuchProcess` if the PID does not exist.
The way this class is bound to a process is via its PID. Most
methods do not guarantee that the PID has not been reused, so you
may end up retrieving information for a different process.
Real process identity is checked (via PID + creation time) only for
methods that set attributes or send signals.
To avoid issues with PID reuse for other read-only methods, call
`is_running()` before querying the process.
"""
attrs: frozenset[str] = frozenset() # dynamically set later
def __init__(self, pid: int | None = None) -> None:
self._init(pid)
def _init(self, pid, _ignore_nsp=False):
if pid is None:
pid = os.getpid()
else:
if pid < 0:
msg = f"pid must be a positive integer (got {pid})"
raise ValueError(msg)
try:
_psplatform.cext.check_pid_range(pid)
except OverflowError as err:
msg = "process PID out of range"
raise NoSuchProcess(pid, msg=msg) from err
self._pid = pid
self._name = None
self._exe = None
self._create_time = None
self._gone = False
self._pid_reused = False
self._hash = None
self._lock = threading.RLock()
# used for caching on Windows only (on POSIX ppid may change)
self._ppid = None
# platform-specific modules define an _psplatform.Process
# implementation class
self._proc = _psplatform.Process(pid)
self._last_sys_cpu_times = None
self._last_proc_cpu_times = None
self._exitcode = _SENTINEL
self._prefetch = {}
self._ident = (self.pid, None)
try:
self._ident = self._get_ident()
except AccessDenied:
# This should happen on Windows only, since we use the fast
# create time method. AFAIK, on all other platforms we are
# able to get create time for all PIDs.
pass
except ZombieProcess:
# Zombies can still be queried by this class (although
# not always) and pids() return them so just go on.
pass
except NoSuchProcess:
if not _ignore_nsp:
msg = "process PID not found"
raise NoSuchProcess(pid, msg=msg) from None
self._gone = True
def _get_ident(self):
"""Return a `(pid, uid)` tuple which is supposed to identify a
Process instance univocally over time.
The PID alone is not enough, as it can be assigned to a new
process after this one terminates, so we add creation time to
the mix. We need this in order to prevent killing the wrong
process later on. This is also known as PID reuse or PID
recycling problem.
The reliability of this strategy mostly depends on
`create_time()` precision, which is 0.01 secs on Linux. The
assumption is that, after a process terminates, the kernel
won't reuse the same PID after such a short period of time
(0.01 secs). Technically this is inherently racy, but
practically it should be good enough.
NOTE: unreliable on FreeBSD and OpenBSD as ctime is subject to
system clock updates.
"""
if WINDOWS:
# Use create_time() fast method in order to speedup
# `process_iter()`. This means we'll get AccessDenied for
# most ADMIN processes, but that's fine since it means
# we'll also get AccessDenied on kill().
# https://github.com/giampaolo/psutil/issues/2366#issuecomment-2381646555
self._create_time = self._proc.create_time(fast_only=True)
return (self.pid, self._create_time)
elif LINUX or NETBSD or OSX:
# Use 'monotonic' process starttime since boot to form unique
# process identity, since it is stable over changes to system
# time.
return (self.pid, self._proc.create_time(monotonic=True))
else:
return (self.pid, self.create_time())
def __str__(self):
info = {}
info["pid"] = self.pid
with self.oneshot():
if self._pid_reused:
info["status"] = "terminated + PID reused"
else:
try:
info["name"] = self._name or self.name()
info["status"] = str(self.status())
except ZombieProcess:
info["status"] = "zombie"
except NoSuchProcess:
info["status"] = "terminated"
except AccessDenied:
pass
if self._exitcode not in {_SENTINEL, None}:
info["exitcode"] = self._exitcode
if self._create_time is not None:
info['started'] = _pprint_secs(self._create_time)
return "{}.{}({})".format(
self.__class__.__module__,
self.__class__.__name__,
", ".join([f"{k}={v!r}" for k, v in info.items()]),
)
__repr__ = __str__
def __eq__(self, other):
# Test for equality with another Process object based
# on PID and creation time.
if not isinstance(other, Process):
return NotImplemented
if OPENBSD or NETBSD or SUNOS: # pragma: no cover
# Zombie processes on Open/NetBSD/illumos/Solaris have a
# creation time of 0.0. This covers the case when a process
# started normally (so it has a ctime), then it turned into a
# zombie. It's important to do this because is_running()
# depends on __eq__.
pid1, ident1 = self._ident
pid2, ident2 = other._ident
if pid1 == pid2:
if ident1 and not ident2:
try:
return self.status() == ProcessStatus.STATUS_ZOMBIE
except Error:
pass
return self._ident == other._ident
def __ne__(self, other):
return not self == other
def __hash__(self):
if self._hash is None:
self._hash = hash(self._ident)
return self._hash
def _raise_if_pid_reused(self):
"""Raise `NoSuchProcess` in case process PID has been reused."""
if self._pid_reused or (not self.is_running() and self._pid_reused):
# We may directly raise NSP in here already if PID is just
# not running, but I prefer NSP to be raised naturally by
# the actual Process API call. This way unit tests will tell
# us if the API is broken (aka don't raise NSP when it
# should). We also remain consistent with all other "get"
# APIs which don't use _raise_if_pid_reused().
msg = "process no longer exists and its PID has been reused"
raise NoSuchProcess(self.pid, self._name, msg=msg)
@property
def pid(self) -> int:
"""The process PID."""
return self._pid
# DEPRECATED
@property
def info(self) -> dict:
"""Return pre-fetched `process_iter()` info dict.
Deprecated: use method calls instead (e.g. `p.name()`).
"""
msg = (
"Process.info is deprecated; use method calls instead"
" (e.g. p.name() instead of p.info['name'])"
)
warnings.warn(msg, DeprecationWarning, stacklevel=2)
# Return a copy to prevent the user from mutating the dict and
# corrupting the prefetch cache.
return self._prefetch.copy()
# --- utility methods
[docs]
@contextlib.contextmanager
def oneshot(self) -> Generator[None, None, None]:
"""Context manager which speeds up the retrieval of multiple
process attributes at the same time.
Internally, many attributes (e.g. `name()`, `ppid()`, `uids()`,
`create_time()`, ...) share the same system call. This context
manager executes each system call once, and caches the results,
so subsequent calls return cached values. The cache is cleared
when exiting the context manager block. Use this every time you
retrieve more than one attribute about the process.
>>> import psutil
>>> p = psutil.Process()
>>> with p.oneshot():
... p.name() # collect multiple info
... p.cpu_times() # return cached value
... p.cpu_percent() # return cached value
... p.create_time() # return cached value
...
>>>
"""
with self._lock:
if hasattr(self, "_cache"):
# NOOP: this covers the use case where the user enters the
# context twice:
#
# >>> with p.oneshot():
# ... with p.oneshot():
# ...
#
# Also, since as_dict() internally uses oneshot()
# I expect that the code below will be a pretty common
# "mistake" that the user will make, so let's guard
# against that:
#
# >>> with p.oneshot():
# ... p.as_dict()
# ...
yield
else:
try:
# cached in case cpu_percent() is used
self.cpu_times.cache_activate(self)
# cached in case memory_percent() is used
self.memory_info.cache_activate(self)
# cached in case parent() is used
self.ppid.cache_activate(self)
# cached in case username() is used
if POSIX:
self.uids.cache_activate(self)
# specific implementation cache
self._proc.oneshot_enter()
yield
finally:
self.cpu_times.cache_deactivate(self)
self.memory_info.cache_deactivate(self)
self.ppid.cache_deactivate(self)
if POSIX:
self.uids.cache_deactivate(self)
self._proc.oneshot_exit()
[docs]
def as_dict(
self, attrs: Collection[str] | None = None, ad_value: Any = None
) -> dict[str, Any]:
"""Utility method returning process information as a
hashable dictionary.
If *attrs* is specified it must be a collection of strings
reflecting available Process class' attribute names (e.g.
['cpu_times', 'name']) else all public (read-only) attributes
are assumed. See `Process.attrs` for a full list.
*ad_value* is the value which gets assigned in case
`AccessDenied` or `ZombieProcess` exception is raised when
retrieving that particular process information.
"""
valid_names = self.attrs
# Deprecated attrs: not returned by default but still accepted if
# explicitly requested.
deprecated_names = {"memory_full_info"}
if attrs is not None:
if not isinstance(attrs, (list, tuple, set, frozenset)):
msg = f"invalid attrs type {type(attrs)}"
raise TypeError(msg)
attrs = set(attrs)
invalid_names = attrs - valid_names - deprecated_names
if invalid_names:
msg = "invalid attr name{} {}".format(
"s" if len(invalid_names) > 1 else "",
", ".join(map(repr, invalid_names)),
)
raise ValueError(msg)
retdict = {}
names = attrs or sorted(valid_names)
with self.oneshot():
for name in names:
try:
if name == 'pid':
ret = self.pid
else:
meth = getattr(self, name)
ret = meth()
except (AccessDenied, ZombieProcess):
ret = ad_value
except NotImplementedError:
# in case of not implemented functionality (may happen
# on old or exotic systems) we want to crash only if
# the user explicitly asked for that particular attr
if attrs:
raise
continue
retdict[name] = ret
return retdict
[docs]
def parent(self) -> Process | None:
"""Return the parent process as a `Process` object, preemptively
checking whether PID has been reused.
If no parent is known return None.
"""
lowest_pid = _LOWEST_PID if _LOWEST_PID is not None else pids()[0]
if self.pid == lowest_pid:
return None
ppid = self.ppid()
if ppid is not None:
# Get a fresh (non-cached) ctime in case the system clock
# was updated. TODO: use a monotonic ctime on platforms
# where it's supported.
proc_ctime = Process(self.pid).create_time()
try:
parent = Process(ppid)
if parent.create_time() <= proc_ctime:
return parent
# ...else ppid has been reused by another process
except NoSuchProcess:
pass
[docs]
def parents(self) -> list[Process]:
"""Return the parents of this process as a list of `Process`
instances.
If no parents are known return an empty list.
"""
parents = []
proc = self.parent()
while proc is not None:
parents.append(proc)
proc = proc.parent()
return parents
[docs]
def is_running(self) -> bool:
"""Return whether this process is running.
It also checks if PID has been reused by another process, in
which case it will remove the process from `process_iter()`
internal cache and return False.
"""
if self._gone or self._pid_reused:
return False
try:
# Checking if PID is alive is not enough as the PID might
# have been reused by another process. Process identity /
# uniqueness over time is guaranteed by (PID + creation
# time) and that is verified in __eq__.
self._pid_reused = self != Process(self.pid)
if self._pid_reused:
_pids_reused.add(self.pid)
raise NoSuchProcess(self.pid)
return True
except ZombieProcess:
# We should never get here as it's already handled in
# Process.__init__; here just for extra safety.
return True
except NoSuchProcess:
self._gone = True
return False
# --- actual API
[docs]
@_use_prefetch
@memoize_when_activated
def ppid(self) -> int:
"""The process parent PID.
On Windows the return value is cached after first call.
"""
# On POSIX we don't want to cache the ppid as it may unexpectedly
# change to 1 (init) in case this process turns into a zombie:
# https://github.com/giampaolo/psutil/issues/321
# http://stackoverflow.com/questions/356722/
# XXX should we check creation time here rather than in
# Process.parent()?
self._raise_if_pid_reused()
if POSIX:
return self._proc.ppid()
else: # pragma: no cover
self._ppid = self._ppid or self._proc.ppid()
return self._ppid
[docs]
@_use_prefetch
def name(self) -> str:
"""The process name. The return value is cached after first call."""
# Process name is only cached on Windows as on POSIX it may
# change, see:
# https://github.com/giampaolo/psutil/issues/692
if WINDOWS and self._name is not None:
return self._name
name = self._proc.name()
if POSIX and len(name) >= 15:
# On UNIX the name gets truncated to the first 15 characters.
# If it matches the first part of the cmdline we return that
# one instead because it's usually more explicative.
# Examples are "gnome-keyring-d" vs. "gnome-keyring-daemon".
try:
cmdline = self.cmdline()
except (AccessDenied, ZombieProcess):
# Just pass and return the truncated name: it's better
# than nothing. Note: there are actual cases where a
# zombie process can return a name() but not a
# cmdline(), see:
# https://github.com/giampaolo/psutil/issues/2239
pass
else:
if cmdline:
extended_name = os.path.basename(cmdline[0])
if extended_name.startswith(name):
name = extended_name
self._name = name
self._proc._name = name
return name
[docs]
@_use_prefetch
def exe(self) -> str:
"""The process executable as an absolute path.
May also be an empty string. The return value is cached after
first call.
"""
def guess_it(fallback):
# try to guess exe from cmdline[0] in absence of a native
# exe representation
cmdline = self.cmdline()
if cmdline and hasattr(os, 'access') and hasattr(os, 'X_OK'):
exe = cmdline[0] # the possible exe
# Attempt to guess only in case of an absolute path.
# It is not safe otherwise as the process might have
# changed cwd.
if (
os.path.isabs(exe)
and os.path.isfile(exe)
and os.access(exe, os.X_OK)
):
return exe
if isinstance(fallback, AccessDenied):
raise fallback
return fallback
if self._exe is None:
try:
exe = self._proc.exe()
except AccessDenied as err:
return guess_it(fallback=err)
else:
if not exe:
# underlying implementation can legitimately return an
# empty string; if that's the case we don't want to
# raise AD while guessing from the cmdline
try:
exe = guess_it(fallback=exe)
except AccessDenied:
pass
self._exe = exe
return self._exe
[docs]
@_use_prefetch
def cmdline(self) -> list[str]:
"""The command line this process has been called with."""
return self._proc.cmdline()
[docs]
@_use_prefetch
def status(self) -> ProcessStatus | str:
"""The process current status as a `STATUS_` constant."""
try:
return self._proc.status()
except ZombieProcess:
return ProcessStatus.STATUS_ZOMBIE
[docs]
@_use_prefetch
def username(self) -> str:
"""The name of the user that owns the process.
On UNIX this is calculated by using the real process uid.
"""
if POSIX:
if pwd is None:
# might happen if python was installed from sources
msg = "requires pwd module shipped with standard python"
raise ImportError(msg)
real_uid = self.uids().real
try:
return pwd.getpwuid(real_uid).pw_name
except KeyError:
# the uid can't be resolved by the system
return str(real_uid)
else:
return self._proc.username()
[docs]
@_use_prefetch
def create_time(self) -> float:
"""The process creation time as a floating point number
expressed in seconds since the epoch (seconds since January 1,
1970, at midnight UTC).
The return value, which is cached after first call, is based on
the system clock, which means it may be affected by changes
such as manual adjustments or time synchronization (e.g. NTP).
"""
if self._create_time is None:
self._create_time = self._proc.create_time()
return self._create_time
[docs]
@_use_prefetch
def cwd(self) -> str:
"""Process current working directory as an absolute path."""
return self._proc.cwd()
[docs]
@_use_prefetch
def nice(self, value: int | None = None) -> int | None:
"""Get or set process niceness (priority)."""
if value is None:
return self._proc.nice_get()
else:
self._raise_if_pid_reused()
self._proc.nice_set(value)
if POSIX:
[docs]
@_use_prefetch
@memoize_when_activated
def uids(self) -> puids:
"""Return process UIDs as a `(real, effective, saved)`
named tuple.
"""
return self._proc.uids()
[docs]
@_use_prefetch
def gids(self) -> pgids:
"""Return process GIDs as a `(real, effective, saved)`
named tuple.
"""
return self._proc.gids()
[docs]
@_use_prefetch
def terminal(self) -> str | None:
"""The terminal associated with this process, if any,
else None.
"""
return self._proc.terminal()
[docs]
@_use_prefetch
def num_fds(self) -> int:
"""Return the number of file descriptors opened by this
process (POSIX only).
"""
return self._proc.num_fds()
if hasattr(_psplatform.Process, "io_counters"):
[docs]
@_use_prefetch
def io_counters(self) -> pio:
"""Return process I/O statistics (primarily read and
written bytes).
Availability: Linux, Windows, BSD, AIX
"""
return self._proc.io_counters()
if hasattr(_psplatform.Process, "ionice_get"):
[docs]
@_use_prefetch
def ionice(
self, ioclass: int | None = None, value: int | None = None
) -> pionice | ProcessIOPriority | None:
"""Get or set process I/O niceness (priority).
On Linux *ioclass* is one of the `IOPRIO_CLASS_*` constants.
*value* is a number which goes from 0 to 7. The higher the
value, the lower the I/O priority of the process.
On Windows only *ioclass* is used and it can be set to
one of the `IOPRIO_*` constants.
Availability: Linux, Windows
"""
if ioclass is None:
if value is not None:
msg = "'ioclass' argument must be specified"
raise ValueError(msg)
return self._proc.ionice_get()
else:
self._raise_if_pid_reused()
return self._proc.ionice_set(ioclass, value)
if hasattr(_psplatform.Process, "rlimit"):
[docs]
def rlimit(
self,
resource: int,
limits: tuple[int, int] | None = None,
) -> tuple[int, int] | None:
"""Get or set process resource limits as a `(soft, hard)`
tuple.
- resource: one of the `RLIMIT_*` constants.
- limits: a `(soft, hard)` tuple (set).
See "man prlimit" for further info.
Availability: Linux, FreeBSD
"""
if limits is not None:
self._raise_if_pid_reused()
return self._proc.rlimit(resource, limits)
if hasattr(_psplatform.Process, "cpu_affinity_get"):
[docs]
@_use_prefetch
def cpu_affinity(
self, cpus: list[int] | None = None
) -> list[int] | None:
"""Get or set process CPU affinity.
If specified, *cpus* must be a list of CPUs for which you
want to set the affinity (e.g. `[0, 1]`). If an empty list is
passed, all eligible CPUs are assumed (and set).
Availability: Linux, Windows, FreeBSD
"""
if cpus is None:
return sorted(set(self._proc.cpu_affinity_get()))
else:
self._raise_if_pid_reused()
if not cpus:
if hasattr(self._proc, "_get_eligible_cpus"):
cpus = self._proc._get_eligible_cpus()
else:
cpus = tuple(range(len(cpu_times(percpu=True))))
self._proc.cpu_affinity_set(list(set(cpus)))
# Linux, FreeBSD, SunOS
if hasattr(_psplatform.Process, "cpu_num"):
[docs]
@_use_prefetch
def cpu_num(self) -> int:
"""Return what CPU this process is currently running on.
The returned number should be <= `psutil.cpu_count()`.
"""
return self._proc.cpu_num()
# All platforms has it, but maybe not in the future.
if hasattr(_psplatform.Process, "environ"):
[docs]
@_use_prefetch
def environ(self) -> dict[str, str]:
"""The environment variables of the process as a dict.
Note: this might not reflect changes made after the process
started.
"""
return self._proc.environ()
if WINDOWS:
@_use_prefetch
def num_handles(self) -> int:
"""Return the number of handles opened by this process
Availability: Windows
"""
return self._proc.num_handles()
[docs]
@_use_prefetch
def num_ctx_switches(self) -> pctxsw:
"""Return the number of voluntary and involuntary context
switches performed by this process.
"""
return self._proc.num_ctx_switches()
[docs]
@_use_prefetch
def num_threads(self) -> int:
"""Return the number of threads used by this process."""
return self._proc.num_threads()
if hasattr(_psplatform.Process, "threads"):
[docs]
@_use_prefetch
def threads(self) -> list[pthread]:
"""Return threads opened by process as a list of
`(id, user_time, system_time)` named tuples.
On OpenBSD this method requires root access.
"""
return self._proc.threads()
[docs]
def children(self, recursive: bool = False) -> list[Process]:
"""Return the children of this process as a list of Process
instances, preemptively checking whether PID has been reused.
If *recursive* is True return all the parent descendants.
Example (A == this process):
A ─┐
│
├─ B (child) ─┐
│ └─ X (grandchild) ─┐
│ └─ Y (great grandchild)
├─ C (child)
└─ D (child)
>>> import psutil
>>> p = psutil.Process()
>>> p.children()
B, C, D
>>> p.children(recursive=True)
B, X, Y, C, D
Note that in the example above if process X disappears
process Y won't be listed as the reference to process A
is lost.
"""
self._raise_if_pid_reused()
ppid_map = _ppid_map()
# Get a fresh (non-cached) ctime in case the system clock was
# updated. TODO: use a monotonic ctime on platforms where it's
# supported.
proc_ctime = Process(self.pid).create_time()
ret = []
if not recursive:
for pid, ppid in ppid_map.items():
if ppid == self.pid:
try:
child = Process(pid)
# if child happens to be older than its parent
# (self) it means child's PID has been reused
if proc_ctime <= child.create_time():
ret.append(child)
except (NoSuchProcess, ZombieProcess):
pass
else:
# Construct a {pid: [child pids]} dict
reverse_ppid_map = collections.defaultdict(list)
for pid, ppid in ppid_map.items():
reverse_ppid_map[ppid].append(pid)
# Recursively traverse that dict, starting from self.pid,
# such that we only call Process() on actual children
seen = set()
stack = [self.pid]
while stack:
pid = stack.pop()
if pid in seen:
# Since pids can be reused while the ppid_map is
# constructed, there may be rare instances where
# there's a cycle in the recorded process "tree".
continue
seen.add(pid)
for child_pid in reverse_ppid_map[pid]:
try:
child = Process(child_pid)
# if child happens to be older than its parent
# (self) it means child's PID has been reused
intime = proc_ctime <= child.create_time()
if intime:
ret.append(child)
stack.append(child_pid)
except (NoSuchProcess, ZombieProcess):
pass
return ret
[docs]
@_use_prefetch
def cpu_percent(self, interval: float | None = None) -> float:
"""Return a float representing the current process CPU
utilization as a percentage.
When *interval* is 0.0 or None (default) compares process times
to system CPU times elapsed since last call, returning
immediately (non-blocking). That means that the first time
this is called it will return a meaningless 0.0 value.
When *interval* is > 0.0 compares process times to system CPU
times elapsed before and after the interval (blocking).
In this case is recommended for accuracy that this function
be called with at least 0.1 seconds between calls.
A value > 100.0 can be returned in case of processes running
multiple threads on different CPU cores.
The returned value is explicitly NOT split evenly between
all available logical CPUs. This means that a busy loop process
running on a system with 2 logical CPUs will be reported as
having 100% CPU utilization instead of 50%.
Examples:
>>> import psutil
>>> p = psutil.Process(os.getpid())
>>> # blocking
>>> p.cpu_percent(interval=1)
2.0
>>> # non-blocking (percentage since last call)
>>> p.cpu_percent(interval=None)
2.9
>>>
"""
blocking = interval is not None and interval > 0.0
if interval is not None and interval < 0:
msg = f"interval is not positive (got {interval!r})"
raise ValueError(msg)
num_cpus = cpu_count() or 1
def timer():
return _timer() * num_cpus
if blocking:
st1 = timer()
pt1 = self._proc.cpu_times()
time.sleep(interval)
st2 = timer()
pt2 = self._proc.cpu_times()
else:
st1 = self._last_sys_cpu_times
pt1 = self._last_proc_cpu_times
st2 = timer()
pt2 = self._proc.cpu_times()
if st1 is None or pt1 is None:
self._last_sys_cpu_times = st2
self._last_proc_cpu_times = pt2
return 0.0
delta_proc = (pt2.user - pt1.user) + (pt2.system - pt1.system)
delta_time = st2 - st1
# reset values for next call in case of interval == None
self._last_sys_cpu_times = st2
self._last_proc_cpu_times = pt2
try:
# This is the utilization split evenly between all CPUs.
# E.g. a busy loop process on a 2-CPU-cores system at this
# point is reported as 50% instead of 100%.
overall_cpus_percent = (delta_proc / delta_time) * 100
except ZeroDivisionError:
# interval was too low
return 0.0
else:
# Note 1:
# in order to emulate "top" we multiply the value for the num
# of CPU cores. This way the busy process will be reported as
# having 100% (or more) usage.
#
# Note 2:
# taskmgr.exe on Windows differs in that it will show 50%
# instead.
#
# Note 3:
# a percentage > 100 is legitimate as it can result from a
# process with multiple threads running on different CPU
# cores (top does the same), see:
# http://stackoverflow.com/questions/1032357
# https://github.com/giampaolo/psutil/issues/474
single_cpu_percent = overall_cpus_percent * num_cpus
return round(single_cpu_percent, 1)
[docs]
@_use_prefetch
@memoize_when_activated
def cpu_times(self) -> pcputimes:
"""Return a `(user, system, children_user, children_system)`
named tuple representing the accumulated process time,
expressed in seconds.
Linux includes an additional `iowait` field.
On macOS and Windows `children_user` and `children_system`
fields are always set to 0.
"""
return self._proc.cpu_times()
[docs]
@_use_prefetch
@memoize_when_activated
def memory_info(self) -> pmem:
"""Return a named tuple with variable fields depending on the
platform, representing memory information about the process.
The portable fields available on all platforms are `rss` and `vms`.
All numbers are expressed in bytes.
"""
return self._proc.memory_info()
[docs]
@_use_prefetch
@memoize_when_activated
def memory_info_ex(self) -> pmem_ex:
"""Return a named tuple extending `memory_info()` with extra
metrics.
All numbers are expressed in bytes.
"""
base = self.memory_info()
if hasattr(self._proc, "memory_info_ex"):
extras = self._proc.memory_info_ex()
return _ntp.pmem_ex(**base._asdict(), **extras)
return base
# Linux, macOS, Windows
if hasattr(_psplatform.Process, "memory_footprint"):
# DEPRECATED
[docs]
def memory_full_info(self) -> pfullmem:
"""Return the same information as `memory_info()` plus
`memory_footprint()` in a single named tuple.
DEPRECATED in 8.0.0. Use `memory_footprint()` instead.
"""
msg = (
"memory_full_info() is deprecated; use memory_footprint() instead"
)
warnings.warn(msg, DeprecationWarning, stacklevel=2)
basic_mem = self.memory_info()
if hasattr(self, "memory_footprint"):
fp = self.memory_footprint()
return _ntp.pfullmem(*basic_mem + fp)
return _ntp.pfullmem(*basic_mem)
[docs]
def memory_percent(self, memtype: str = "rss") -> float:
"""Compare process memory to total physical system memory and
calculate process memory utilization as a percentage.
*memtype* argument is a string that dictates what type of
process memory you want to compare against (defaults to "rss").
The list of available strings can be obtained like this:
>>> psutil.Process().memory_info()._fields
('rss', 'vms', 'shared', 'text', 'lib', 'data', 'dirty', 'uss', 'pss')
"""
valid_types = list(_ntp.pmem._fields)
if hasattr(_ntp, "pmem_ex"):
valid_types += [
f for f in _ntp.pmem_ex._fields if f not in valid_types
]
if hasattr(_ntp, "pfootprint"):
valid_types += [
f for f in _ntp.pfootprint._fields if f not in valid_types
]
if memtype not in valid_types:
msg = (
f"invalid memtype {memtype!r}; valid types are"
f" {tuple(valid_types)!r}"
)
raise ValueError(msg)
if memtype in _ntp.pmem._fields:
fun = self.memory_info
elif (
hasattr(_ntp, "pfootprint") and memtype in _ntp.pfootprint._fields
):
fun = self.memory_footprint
else:
fun = self.memory_info_ex
metrics = fun()
value = getattr(metrics, memtype)
# use cached value if available
total_phymem = _TOTAL_PHYMEM or virtual_memory().total
if not total_phymem > 0:
# we should never get here
msg = (
"can't calculate process memory percent because total physical"
f" system memory is not positive ({total_phymem!r})"
)
raise ValueError(msg)
return (value / float(total_phymem)) * 100
if hasattr(_psplatform.Process, "memory_maps"):
[docs]
@_use_prefetch
def memory_maps(
self, grouped: bool = True
) -> list[pmmap_grouped] | list[pmmap_ext]:
"""Return process mapped memory regions as a list of named
tuples whose fields are variable depending on the platform.
If *grouped* is True the mapped regions with the same 'path'
are grouped together and the different memory fields are summed.
If *grouped* is False every mapped region is shown as a single
entity and the named tuple will also include the mapped region's
address space ('addr') and permission set ('perms').
"""
it = self._proc.memory_maps()
if grouped:
d = {}
for tupl in it:
path = tupl[2]
nums = tupl[3:]
try:
d[path] = list(map(lambda x, y: x + y, d[path], nums))
except KeyError:
d[path] = nums
return [_ntp.pmmap_grouped(path, *d[path]) for path in d]
else:
return [_ntp.pmmap_ext(*x) for x in it]
[docs]
@_use_prefetch
def page_faults(self) -> ppagefaults:
"""Return the number of page faults for this process as a
`(minor, major)` named tuple.
- `minor` (a.k.a. *soft* faults): occur when a memory page is
not currently mapped into the process address space, but is
already present in physical RAM (e.g. a shared library page
loaded by another process). The kernel resolves these without
disk I/O.
- `major` (a.k.a. *hard* faults): occur when the page must be
fetched from disk. These are expensive because they stall the
process until I/O completes.
Both counters are cumulative since process creation.
"""
return self._proc.page_faults()
[docs]
@_use_prefetch
def open_files(self) -> list[popenfile]:
"""Return files opened by process as a list of `(path, fd)`
named tuples including the absolute file name and file
descriptor number.
On Linux the named tuple also includes `position`, `mode` and
`flags` fields.
"""
return self._proc.open_files()
[docs]
@_use_prefetch
def net_connections(self, kind: str = "inet") -> list[pconn]:
"""Return socket connections opened by process as a list of
`(fd, family, type, laddr, raddr, status)` named tuples.
The *kind* parameter filters for connections that match the
following criteria:
+------------+----------------------------------------------------+
| Kind Value | Connections using |
+------------+----------------------------------------------------+
| 'inet' | IPv4 and IPv6 |
| 'inet4' | IPv4 |
| 'inet6' | IPv6 |
| 'tcp' | TCP |
| 'tcp4' | TCP over IPv4 |
| 'tcp6' | TCP over IPv6 |
| 'udp' | UDP |
| 'udp4' | UDP over IPv4 |
| 'udp6' | UDP over IPv6 |
| 'unix' | UNIX socket (both UDP and TCP protocols) |
| 'all' | the sum of all the possible families and protocols |
+------------+----------------------------------------------------+
"""
_check_conn_kind(kind)
return self._proc.net_connections(kind)
[docs]
@_common.deprecated_method(replacement="net_connections")
def connections(self, kind="inet") -> list[pconn]:
return self.net_connections(kind=kind)
# --- signals
if POSIX:
def _send_signal(self, sig):
assert not self.pid < 0, self.pid
self._raise_if_pid_reused()
pid, ppid, name = self.pid, self._ppid, self._name
if pid == 0:
# see "man 2 kill"
msg = (
"preventing sending signal to process with PID 0 as it "
"would affect every process in the process group of the "
"calling process (os.getpid()) instead of PID 0"
)
raise ValueError(msg)
try:
os.kill(pid, sig)
except ProcessLookupError as err:
if OPENBSD and pid_exists(pid):
# We do this because os.kill() lies in case of
# zombie processes.
raise ZombieProcess(pid, name, ppid) from err
self._gone = True
raise NoSuchProcess(pid, name) from err
except PermissionError as err:
raise AccessDenied(pid, name) from err
[docs]
def send_signal(self, sig: int) -> None:
"""Send a signal *sig* to process, preemptively checking
whether PID has been reused (see signal module constants).
On Windows only SIGTERM, CTRL_C_EVENT and CTRL_BREAK_EVENT
are valid. SIGTERM is treated as an alias for `kill()`.
"""
if POSIX:
self._send_signal(sig)
else: # pragma: no cover
self._raise_if_pid_reused()
if sig != signal.SIGTERM and not self.is_running():
msg = "process no longer exists"
raise NoSuchProcess(self.pid, self._name, msg=msg)
self._proc.send_signal(sig)
[docs]
def suspend(self) -> None:
"""Suspend process execution with SIGSTOP preemptively checking
whether PID has been reused.
On Windows this has the effect of suspending all process threads.
"""
if POSIX:
self._send_signal(signal.SIGSTOP)
else: # pragma: no cover
self._raise_if_pid_reused()
self._proc.suspend()
[docs]
def resume(self) -> None:
"""Resume process execution with SIGCONT preemptively checking
whether PID has been reused.
On Windows this has the effect of resuming all process threads.
"""
if POSIX:
self._send_signal(signal.SIGCONT)
else: # pragma: no cover
self._raise_if_pid_reused()
self._proc.resume()
[docs]
def terminate(self) -> None:
"""Terminate the process with SIGTERM preemptively checking
whether PID has been reused.
On Windows this is an alias for `kill()`.
"""
if POSIX:
self._send_signal(signal.SIGTERM)
else: # pragma: no cover
self._raise_if_pid_reused()
self._proc.kill()
[docs]
def kill(self) -> None:
"""Kill the current process with SIGKILL preemptively checking
whether PID has been reused.
"""
if POSIX:
self._send_signal(signal.SIGKILL)
else: # pragma: no cover
self._raise_if_pid_reused()
self._proc.kill()
[docs]
def wait(self, timeout: float | None = None) -> int | None:
"""Wait for process to terminate, and if process is a child
of os.getpid(), also return its exit code, else None.
On Windows there's no such limitation (exit code is always
returned).
If the process is already terminated, immediately return None
instead of raising `NoSuchProcess`.
If *timeout* (in seconds) is specified and process is still
alive, raise `TimeoutExpired`.
If *timeout=0* either return immediately or raise
`TimeoutExpired` (non-blocking).
To wait for multiple Process objects use `psutil.wait_procs()`.
"""
if self.pid == 0:
msg = "can't wait for PID 0"
raise ValueError(msg)
if timeout is not None:
if not isinstance(timeout, (int, float)):
msg = f"timeout must be an int or float (got {type(timeout)})"
raise TypeError(msg)
if timeout < 0:
msg = f"timeout must be positive or zero (got {timeout})"
raise ValueError(msg)
if self._exitcode is not _SENTINEL:
return self._exitcode
try:
self._exitcode = self._proc.wait(timeout)
except TimeoutExpired as err:
exc = TimeoutExpired(timeout, pid=self.pid, name=self._name)
raise exc from err
return self._exitcode
# The valid attr names which can be processed by Process.as_dict(attrs=...)
# and process_iter(attrs=...).
# fmt: off
Process.attrs = frozenset(
x for x in dir(Process) if not x.startswith("_") and x not in
{'send_signal', 'suspend', 'resume', 'terminate', 'kill', 'wait',
'is_running', 'as_dict', 'parent', 'parents', 'children', 'rlimit',
'connections', 'memory_full_info', 'oneshot', 'info', 'attrs'}
)
# fmt: on
# =====================================================================
# --- Popen class
# =====================================================================
[docs]
class Popen(Process):
"""Same as `subprocess.Popen`, but in addition it provides all
`Process` methods in a single class.
For the following methods which are common to both classes, psutil
implementation takes precedence:
* `send_signal()`
* `terminate()`
* `kill()`
This is done in order to avoid killing another process in case its
PID has been reused, fixing BPO-6973.
>>> import psutil
>>> from subprocess import PIPE
>>> p = psutil.Popen(["python", "-c", "print 'hi'"], stdout=PIPE)
>>> p.name()
'python3'
>>> p.uids()
user(real=1000, effective=1000, saved=1000)
>>> p.username()
'giampaolo'
>>> p.communicate()
('hi', None)
>>> p.terminate()
>>> p.wait(timeout=2)
0
>>>
"""
def __init__(self, *args, **kwargs):
# Explicitly avoid to raise NoSuchProcess in case the process
# spawned by subprocess.Popen terminates too quickly, see:
# https://github.com/giampaolo/psutil/issues/193
self.__subproc = subprocess.Popen(*args, **kwargs)
self._init(self.__subproc.pid, _ignore_nsp=True)
def __dir__(self):
return sorted(set(dir(Popen) + dir(subprocess.Popen)))
def __enter__(self) -> Popen:
if hasattr(self.__subproc, '__enter__'):
self.__subproc.__enter__()
return self
def __exit__(self, *args, **kwargs):
if hasattr(self.__subproc, '__exit__'):
return self.__subproc.__exit__(*args, **kwargs)
else:
if self.stdout:
self.stdout.close()
if self.stderr:
self.stderr.close()
try:
# Flushing a BufferedWriter may raise an error.
if self.stdin:
self.stdin.close()
finally:
# Wait for the process to terminate, to avoid zombies.
self.wait()
def __getattribute__(self, name):
try:
return object.__getattribute__(self, name)
except AttributeError:
try:
return object.__getattribute__(self.__subproc, name)
except AttributeError:
msg = f"{self.__class__!r} has no attribute {name!r}"
raise AttributeError(msg) from None
def wait(self, timeout: float | None = None) -> int | None:
if self.__subproc.returncode is not None:
return self.__subproc.returncode
ret = super().wait(timeout)
self.__subproc.returncode = ret
return ret
# =====================================================================
# --- system processes related functions
# =====================================================================
[docs]
def pids() -> list[int]:
"""Return a list of current running PIDs."""
global _LOWEST_PID
ret = sorted(_psplatform.pids())
_LOWEST_PID = ret[0]
return ret
[docs]
def pid_exists(pid: int) -> bool:
"""Return True if *pid* exists in the current process list.
This is faster than doing `pid in psutil.pids()` and should be
preferred.
"""
if pid < 0:
return False
elif pid == 0 and POSIX:
# On POSIX we use os.kill() to determine PID existence.
# According to "man 2 kill" PID 0 has a special meaning
# though: it refers to <<every process in the process
# group of the calling process>> and that is not we want
# to do here.
return pid in pids()
else:
return _psplatform.pid_exists(pid)
_pmap = {}
_pids_reused = set()
[docs]
def process_iter(
attrs: Collection[str] | None = None, ad_value: Any = None
) -> Iterator[Process]:
"""Return a generator yielding a `Process` instance for all
running processes.
Every new `Process` instance is only created once and then cached
into an internal table which is updated every time this is used.
Cache can optionally be cleared via `process_iter.cache_clear()`.
The sorting order in which processes are yielded is based on
their PIDs.
*attrs* and *ad_value* have the same meaning as in
`Process.as_dict()`.
If *attrs* is specified, `Process.as_dict()` is called and the
results are cached, so that subsequent method calls (e.g.
`p.name()`) return cached values. Use `attrs=Process.attrs` to
retrieve all process info (slow).
If a method raises `AccessDenied` during pre-fetch, it will return
*ad_value* (default None) instead of raising.
"""
global _pmap
def add(pid):
proc = Process(pid)
pmap[proc.pid] = proc
return proc
def remove(pid):
pmap.pop(pid, None)
if attrs is not None:
if attrs == []: # deprecated in 8.0.0
msg = (
"process_iter(attrs=[]) is deprecated; use "
"process_iter(attrs=Process.attrs) to retrieve all attributes"
)
warnings.warn(msg, DeprecationWarning, stacklevel=2)
elif not attrs:
# as_dict() will resolve an empty list|tuple|set to "all
# attribute names", but it's ambiguous and should be
# signaled.
msg = (
f"process_iter(attrs={attrs}) is ambiguous; use "
"process_iter(attrs=Process.attrs) to retrieve all attributes"
)
warnings.warn(msg, UserWarning, stacklevel=2)
pmap = _pmap.copy()
a = set(pids())
b = set(pmap)
new_pids = a - b
gone_pids = b - a
for pid in gone_pids:
remove(pid)
while _pids_reused:
pid = _pids_reused.pop()
debug(f"refreshing Process instance for reused PID {pid}")
remove(pid)
try:
ls = sorted(list(pmap.items()) + list(dict.fromkeys(new_pids).items()))
for pid, proc in ls:
try:
if proc is None: # new process
proc = add(pid)
proc._prefetch = {} # clear cache
if attrs is not None:
proc._prefetch = proc.as_dict(
attrs=attrs, ad_value=ad_value
)
yield proc
except NoSuchProcess:
remove(pid)
finally:
_pmap = pmap
process_iter.cache_clear = lambda: _pmap.clear() # noqa: PLW0108
process_iter.cache_clear.__doc__ = "Clear process_iter() internal cache."
[docs]
def wait_procs(
procs: list[Process],
timeout: float | None = None,
callback: Callable[[Process], None] | None = None,
) -> tuple[list[Process], list[Process]]:
"""Convenience function which waits for a list of processes to
terminate.
Return a `(gone, alive)` tuple indicating which processes
are gone and which ones are still alive.
The gone ones will have a new `returncode` attribute indicating
process exit status (may be None).
*callback* is a function which gets called every time a process
terminates (a `Process` instance is passed as callback argument).
Function will return as soon as all processes terminate or when
*timeout* occurs.
Differently from `Process.wait()` it will not raise `TimeoutExpired` if
*timeout* occurs.
Typical use case is:
- send SIGTERM to a list of processes
- give them some time to terminate
- send SIGKILL to those ones which are still alive
Example:
>>> def on_terminate(proc):
... print("process {} terminated".format(proc))
...
>>> for p in procs:
... p.terminate()
...
>>> gone, alive = wait_procs(procs, timeout=3, callback=on_terminate)
>>> for p in alive:
... p.kill()
"""
def check_gone(proc, timeout):
try:
returncode = proc.wait(timeout=timeout)
except (TimeoutExpired, subprocess.TimeoutExpired):
pass
else:
if returncode is not None or not proc.is_running():
# Set new Process instance attribute.
proc.returncode = returncode
gone.add(proc)
if callback is not None:
callback(proc)
if timeout is not None and not timeout >= 0:
msg = f"timeout must be a positive integer, got {timeout}"
raise ValueError(msg)
if callback is not None and not callable(callback):
msg = f"callback {callback!r} is not a callable"
raise TypeError(msg)
gone = set()
alive = set(procs)
if timeout is not None:
deadline = _timer() + timeout
while alive:
if timeout is not None and timeout <= 0:
break
for proc in alive:
# Make sure that every complete iteration (all processes)
# will last max 1 sec.
# We do this because we don't want to wait too long on a
# single process: in case it terminates too late other
# processes may disappear in the meantime and their PID
# reused.
max_timeout = 1.0 / len(alive)
if timeout is not None:
timeout = min((deadline - _timer()), max_timeout)
if timeout <= 0:
break
check_gone(proc, timeout)
else:
check_gone(proc, max_timeout)
alive = alive - gone # noqa: PLR6104
if alive:
# Last attempt over processes survived so far.
# timeout == 0 won't make this function wait any further.
for proc in alive:
check_gone(proc, 0)
alive = alive - gone # noqa: PLR6104
return (list(gone), list(alive))
# =====================================================================
# --- CPU related functions
# =====================================================================
[docs]
def cpu_count(logical: bool = True) -> int | None:
"""Return the number of logical CPUs in the system (same as
`os.cpu_count()`).
If *logical* is False return the number of physical cores only
(e.g. hyper thread CPUs are excluded).
Return None if undetermined.
The return value is cached after first call.
If desired cache can be cleared like this:
>>> psutil.cpu_count.cache_clear()
"""
if logical:
ret = _psplatform.cpu_count_logical()
else:
ret = _psplatform.cpu_count_cores()
if ret is not None and ret < 1:
ret = None
return ret
[docs]
def cpu_times(percpu: bool = False) -> scputimes | list[scputimes]:
"""Return system-wide CPU times as a named tuple.
Every CPU time represents the seconds the CPU has spent in the
given mode:
- `user`
- `system`
- `idle`
- `nice` (UNIX)
- `iowait` (Linux)
- `irq` (Linux, FreeBSD)
- `softirq` (Linux)
- `steal` (Linux)
- `guest` (Linux)
- `guest_nice` (Linux)
- `dpc` (Windows)
When *percpu* is True return a list of named tuples for each
logical CPU. First element of the list refers to first CPU, second
element to second CPU and so on. The order of the list is
consistent across calls.
"""
if not percpu:
return _psplatform.cpu_times()
else:
return _psplatform.per_cpu_times()
try:
_last_cpu_times = {threading.current_thread().ident: cpu_times()}
except Exception: # noqa: BLE001
# Don't want to crash at import time.
_last_cpu_times = {}
try:
_last_per_cpu_times = {
threading.current_thread().ident: cpu_times(percpu=True)
}
except Exception: # noqa: BLE001
# Don't want to crash at import time.
_last_per_cpu_times = {}
def _cpu_tot_time(times):
"""Given a `cpu_time()` named tuple calculates the total CPU time
(including idle time).
"""
tot = sum(times)
if LINUX:
# On Linux guest times are already accounted in "user" or
# "nice" times, so we subtract them from total.
# Htop does the same. References:
# https://github.com/giampaolo/psutil/pull/940
# http://unix.stackexchange.com/questions/178045
# https://github.com/torvalds/linux/blob/447976ef4/kernel/sched/cputime.c#L158
tot -= times.guest
tot -= times.guest_nice
return tot
def _cpu_busy_time(times):
"""Given a `cpu_time()` named tuple calculates the busy CPU time by
subtracting all idle CPU times.
"""
busy = _cpu_tot_time(times)
busy -= times.idle
# Linux: "iowait" is time during which the CPU does not do anything
# (waits for IO to complete). On Linux IO wait is *not* accounted
# in "idle" time so we subtract it. Htop does the same.
# References:
# https://github.com/torvalds/linux/blob/447976ef4/kernel/sched/cputime.c#L244
busy -= getattr(times, "iowait", 0)
return busy
def _cpu_times_deltas(t1, t2):
assert t1._fields == t2._fields, (t1, t2)
field_deltas = []
for field in _ntp.scputimes._fields:
field_delta = getattr(t2, field) - getattr(t1, field)
# CPU times are always supposed to increase over time
# or at least remain the same and that's because time
# cannot go backwards.
# Surprisingly sometimes this might not be the case (at
# least on Windows and Linux), see:
# https://github.com/giampaolo/psutil/issues/392
# https://github.com/giampaolo/psutil/issues/645
# https://github.com/giampaolo/psutil/issues/1210
# Trim negative deltas to zero to ignore decreasing fields.
# top does the same. Reference:
# https://gitlab.com/procps-ng/procps/blob/v3.3.12/top/top.c#L5063
field_delta = max(0, field_delta)
field_deltas.append(field_delta)
return _ntp.scputimes(*field_deltas)
[docs]
def cpu_percent(
interval: float | None = None, percpu: bool = False
) -> float | list[float]:
"""Return a float representing the current system-wide CPU
utilization as a percentage.
When *interval* is > 0.0 compares system CPU times elapsed before
and after the interval (blocking).
When *interval* is 0.0 or None compares system CPU times elapsed
since last call or module import, returning immediately (non
blocking). That means the first time this is called it will
return a meaningless 0.0 value which you should ignore.
In this case is recommended for accuracy that this function be
called with at least 0.1 seconds between calls.
When *percpu* is True returns a list of floats representing the
utilization as a percentage for each CPU.
First element of the list refers to first CPU, second element
to second CPU and so on.
The order of the list is consistent across calls.
Examples:
>>> # blocking, system-wide
>>> psutil.cpu_percent(interval=1)
2.0
>>>
>>> # blocking, per-cpu
>>> psutil.cpu_percent(interval=1, percpu=True)
[2.0, 1.0]
>>>
>>> # non-blocking (percentage since last call)
>>> psutil.cpu_percent(interval=None)
2.9
>>>
"""
tid = threading.current_thread().ident
blocking = interval is not None and interval > 0.0
if interval is not None and interval < 0:
msg = f"interval is not positive (got {interval})"
raise ValueError(msg)
def calculate(t1, t2):
times_delta = _cpu_times_deltas(t1, t2)
all_delta = _cpu_tot_time(times_delta)
busy_delta = _cpu_busy_time(times_delta)
try:
busy_perc = (busy_delta / all_delta) * 100
except ZeroDivisionError:
return 0.0
else:
return round(busy_perc, 1)
# system-wide usage
if not percpu:
if blocking:
t1 = cpu_times()
time.sleep(interval)
else:
t1 = _last_cpu_times.get(tid) or cpu_times()
_last_cpu_times[tid] = cpu_times()
return calculate(t1, _last_cpu_times[tid])
# per-cpu usage
else:
ret = []
if blocking:
tot1 = cpu_times(percpu=True)
time.sleep(interval)
else:
tot1 = _last_per_cpu_times.get(tid) or cpu_times(percpu=True)
_last_per_cpu_times[tid] = cpu_times(percpu=True)
for t1, t2 in zip(tot1, _last_per_cpu_times[tid]):
ret.append(calculate(t1, t2))
return ret
# Use a separate dict for cpu_times_percent(), so it's independent from
# cpu_percent() and they can both be used within the same program.
_last_cpu_times_2 = _last_cpu_times.copy()
_last_per_cpu_times_2 = _last_per_cpu_times.copy()
[docs]
def cpu_times_percent(
interval: float | None = None, percpu: bool = False
) -> scputimes | list[scputimes]:
"""Same as `cpu_percent()`, but provides utilization percentages
for each specific CPU time as is returned by `cpu_times()`.
For instance, on Linux we'll get:
>>> cpu_times_percent()
cpupercent(user=4.8, nice=0.0, system=4.8, idle=90.5, iowait=0.0,
irq=0.0, softirq=0.0, steal=0.0, guest=0.0, guest_nice=0.0)
>>>
*interval* and *percpu* arguments have the same meaning as in
`cpu_percent()`.
"""
tid = threading.current_thread().ident
blocking = interval is not None and interval > 0.0
if interval is not None and interval < 0:
msg = f"interval is not positive (got {interval!r})"
raise ValueError(msg)
def calculate(t1, t2):
nums = []
times_delta = _cpu_times_deltas(t1, t2)
all_delta = _cpu_tot_time(times_delta)
# "scale" is the value to multiply each delta with to get percentages.
# We use "max" to avoid division by zero (if all_delta is 0, then all
# fields are 0 so percentages will be 0 too. all_delta cannot be a
# fraction because cpu times are integers)
scale = 100.0 / max(1, all_delta)
for field_delta in times_delta:
field_perc = field_delta * scale
field_perc = round(field_perc, 1)
# make sure we don't return negative values or values over 100%
field_perc = min(max(0.0, field_perc), 100.0)
nums.append(field_perc)
return _ntp.scputimes(*nums)
# system-wide usage
if not percpu:
if blocking:
t1 = cpu_times()
time.sleep(interval)
else:
t1 = _last_cpu_times_2.get(tid) or cpu_times()
_last_cpu_times_2[tid] = cpu_times()
return calculate(t1, _last_cpu_times_2[tid])
# per-cpu usage
else:
ret = []
if blocking:
tot1 = cpu_times(percpu=True)
time.sleep(interval)
else:
tot1 = _last_per_cpu_times_2.get(tid) or cpu_times(percpu=True)
_last_per_cpu_times_2[tid] = cpu_times(percpu=True)
for t1, t2 in zip(tot1, _last_per_cpu_times_2[tid]):
ret.append(calculate(t1, t2))
return ret
[docs]
def cpu_stats() -> scpustats:
"""Return CPU statistics."""
return _psplatform.cpu_stats()
if hasattr(_psplatform, "cpu_freq"):
[docs]
def cpu_freq(percpu: bool = False) -> scpufreq | list[scpufreq] | None:
"""Return CPU frequency as a named tuple including current,
min and max frequency expressed in Mhz.
If *percpu* is True and the system supports per-cpu frequency
retrieval (Linux and FreeBSD), a list of frequencies is
returned for each CPU. If not, a list with one element is
returned.
"""
ret = _psplatform.cpu_freq()
if percpu:
return ret
else:
num_cpus = float(len(ret))
if num_cpus == 0:
return None
elif num_cpus == 1:
return ret[0]
else:
currs, mins, maxs = 0.0, 0.0, 0.0
set_none = False
for cpu in ret:
currs += cpu.current
# On Linux if /proc/cpuinfo is used min/max are set
# to None.
if LINUX and cpu.min is None:
set_none = True
continue
mins += cpu.min
maxs += cpu.max
current = currs / num_cpus
if set_none:
min_ = max_ = None
else:
min_ = mins / num_cpus
max_ = maxs / num_cpus
return _ntp.scpufreq(current, min_, max_)
__all__.append("cpu_freq")
[docs]
def getloadavg() -> tuple[float, float, float]:
"""Return the average system load over the last 1, 5 and 15 minutes
as a tuple.
On Windows this is emulated by using a Windows API that spawns a
thread which keeps running in background and updates results every
5 seconds, mimicking the UNIX behavior.
"""
if hasattr(os, "getloadavg"):
return os.getloadavg()
else:
return _psplatform.getloadavg()
# =====================================================================
# --- system memory related functions
# =====================================================================
[docs]
def virtual_memory() -> svmem:
"""Return statistics about system memory usage as a named tuple.
The fields vary by platform (see official doc), but the following
are present on all platforms:
- total:
total physical memory available
- available:
the memory that can be given instantly to processes without the
system going into swap.
This is calculated by summing different memory values depending
on the platform and it is supposed to be used to monitor actual
memory usage in a cross platform fashion.
- percent:
the percentage usage calculated as `(total - available) / total * 100`
- used:
memory used, calculated differently depending on the platform and
designed for informational purposes only
- free:
memory not being used at all (zeroed) that is readily available;
note that this doesn't reflect the actual memory available
(use 'available' instead)
The sum of `used` and `available` does not necessarily equal `total`.
On Windows `available` and `free` are the same.
"""
global _TOTAL_PHYMEM
ret = _psplatform.virtual_memory()
# cached for later use in Process.memory_percent()
_TOTAL_PHYMEM = ret.total
return ret
[docs]
def swap_memory() -> sswap:
"""Return system swap memory statistics as a named tuple including
the following fields:
- total: total swap memory in bytes
- used: used swap memory in bytes
- free: free swap memory in bytes
- percent: the percentage usage
- sin: no. of bytes the system has swapped in from disk (cumulative)
- sout: no. of bytes the system has swapped out from disk (cumulative)
`sin` and `sout` on Windows are meaningless and always set to 0.
"""
return _psplatform.swap_memory()
# =====================================================================
# --- disks/partitions related functions
# =====================================================================
[docs]
def disk_usage(path: str) -> sdiskusage:
"""Return disk usage statistics about the given *path* as a
named tuple including total, used and free space expressed in bytes
plus the percentage usage.
"""
return _psplatform.disk_usage(path)
[docs]
def disk_partitions(all: bool = False) -> list[sdiskpart]:
"""Return mounted partitions as a list of
(device, mountpoint, fstype, opts) named tuple.
`opts` field is a raw string separated by commas indicating mount
options which may vary depending on the platform.
If *all* parameter is False return physical devices only and ignore
all others.
"""
return _psplatform.disk_partitions(all)
[docs]
def disk_io_counters(
perdisk: bool = False, nowrap: bool = True
) -> sdiskio | dict[str, sdiskio]:
"""Return system disk I/O statistics as a named tuple including
the following fields:
- read_count: number of reads
- write_count: number of writes
- read_bytes: number of bytes read
- write_bytes: number of bytes written
- read_time: (not NetBSD, OpenBSD) time spent reading from
disk (in ms)
- write_time: (not NetBSD, OpenBSD) time spent writing to
disk (in ms)
Platform specific:
- busy_time: (Linux, FreeBSD) time spent doing actual I/Os (in ms)
- read_merged_count (Linux): number of merged reads
- write_merged_count (Linux): number of merged writes
If *perdisk* is True return the same information for every
physical disk as a dictionary with partition names as the keys.
If *nowrap* is True (default), counters that overflow and wrap to
zero are automatically adjusted so they never decrease (this can
happen on very busy or long-lived systems).
`disk_io_counters.cache_clear()` can be used to invalidate the
*nowrap* cache.
"""
kwargs = dict(perdisk=perdisk) if LINUX else {}
rawdict = _psplatform.disk_io_counters(**kwargs)
if not rawdict:
return {} if perdisk else None
if nowrap:
rawdict = _wrap_numbers(rawdict, 'psutil.disk_io_counters')
if perdisk:
for disk, fields in rawdict.items():
rawdict[disk] = _ntp.sdiskio(*fields)
return rawdict
else:
return _ntp.sdiskio(*(sum(x) for x in zip(*rawdict.values())))
disk_io_counters.cache_clear = functools.partial(
_wrap_numbers.cache_clear, 'psutil.disk_io_counters'
)
disk_io_counters.cache_clear.__doc__ = "Clears nowrap argument cache"
# =====================================================================
# --- network related functions
# =====================================================================
[docs]
def net_io_counters(
pernic: bool = False, nowrap: bool = True
) -> snetio | dict[str, snetio] | None:
"""Return network I/O statistics as a named tuple including
the following fields:
- bytes_sent: number of bytes sent
- bytes_recv: number of bytes received
- packets_sent: number of packets sent
- packets_recv: number of packets received
- errin: total number of errors while receiving
- errout: total number of errors while sending
- dropin: total number of incoming packets which were dropped
- dropout: total number of outgoing packets which were dropped
(always 0 on macOS and BSD)
If *pernic* is True return the same information for every
network interface as a dictionary with interface names as the
keys.
If *nowrap* is True (default), counters that overflow and wrap to
zero are automatically adjusted so they never decrease (this can
happen on very busy or long-lived systems).
`net_io_counters.cache_clear()` can be used to invalidate the
*nowrap* cache.
"""
rawdict = _psplatform.net_io_counters()
if not rawdict:
return {} if pernic else None
if nowrap:
rawdict = _wrap_numbers(rawdict, 'psutil.net_io_counters')
if pernic:
for nic, fields in rawdict.items():
rawdict[nic] = _ntp.snetio(*fields)
return rawdict
else:
return _ntp.snetio(*[sum(x) for x in zip(*rawdict.values())])
net_io_counters.cache_clear = functools.partial(
_wrap_numbers.cache_clear, 'psutil.net_io_counters'
)
net_io_counters.cache_clear.__doc__ = "Clears nowrap argument cache"
[docs]
def net_connections(kind: str = 'inet') -> list[sconn]:
"""Return system-wide socket connections as a list of
(fd, family, type, laddr, raddr, status, pid) named tuples.
In case of limited privileges `fd` and `pid` may be set to -1
and None respectively.
The *kind* parameter filters for connections that fit the
following criteria:
+------------+----------------------------------------------------+
| Kind Value | Connections using |
+------------+----------------------------------------------------+
| 'inet' | IPv4 and IPv6 |
| 'inet4' | IPv4 |
| 'inet6' | IPv6 |
| 'tcp' | TCP |
| 'tcp4' | TCP over IPv4 |
| 'tcp6' | TCP over IPv6 |
| 'udp' | UDP |
| 'udp4' | UDP over IPv4 |
| 'udp6' | UDP over IPv6 |
| 'unix' | UNIX socket (both UDP and TCP protocols) |
| 'all' | the sum of all the possible families and protocols |
+------------+----------------------------------------------------+
On macOS this function requires root privileges.
"""
_check_conn_kind(kind)
return _psplatform.net_connections(kind)
[docs]
def net_if_addrs() -> dict[str, list[snicaddr]]:
"""Return a dictionary mapping each NIC (Network Interface Card) to
a list of named tuples representing its addresses. Multiple
addresses of the same family can exist per interface.
The named tuple includes 5 fields (addresses may be None):
- family: the address family, either `AF_INET`, `AF_INET6`,
`psutil.AF_LINK` (a MAC address) or `AF_UNSPEC` (a virtual or
unconfigured NIC).
- address: the primary NIC address
- netmask: the netmask address
- broadcast: the broadcast address; always None on Windows
- ptp: a "point to point" address (typically a VPN); always None on
Windows
"""
rawlist = _psplatform.net_if_addrs()
rawlist.sort(key=lambda x: x[1]) # sort by family
ret = collections.defaultdict(list)
for name, fam, addr, mask, broadcast, ptp in rawlist:
try:
fam = socket.AddressFamily(fam)
except ValueError:
if WINDOWS and fam == -1:
fam = _psplatform.AF_LINK
elif (
hasattr(_psplatform, "AF_LINK") and fam == _psplatform.AF_LINK
):
# Linux defines AF_LINK as an alias for AF_PACKET.
# We re-set the family here so that repr(family)
# will show AF_LINK rather than AF_PACKET
fam = _psplatform.AF_LINK
if fam == _psplatform.AF_LINK:
# The underlying C function may return an incomplete MAC
# address in which case we fill it with null bytes, see:
# https://github.com/giampaolo/psutil/issues/786
separator = ":" if POSIX else "-"
while addr.count(separator) < 5:
addr += f"{separator}00"
nt = _ntp.snicaddr(fam, addr, mask, broadcast, ptp)
# On Windows broadcast is None, so we determine it via
# ipaddress module.
if WINDOWS and fam in {socket.AF_INET, socket.AF_INET6}:
try:
broadcast = _common.broadcast_addr(nt)
except Exception as err: # noqa: BLE001
debug(err)
else:
if broadcast is not None:
nt = nt._replace(broadcast=broadcast)
ret[name].append(nt)
return dict(ret)
[docs]
def net_if_stats() -> dict[str, snicstats]:
"""Return information about each NIC (network interface card)
installed on the system as a dictionary whose keys are the
NIC names and value is a named tuple with the following fields:
- isup: whether the interface is up (bool)
- duplex: can be either `NIC_DUPLEX_FULL`, `NIC_DUPLEX_HALF` or
`NIC_DUPLEX_UNKNOWN`
- speed: the NIC speed expressed in mega bits (MB); if it can't
be determined (e.g. 'localhost') it will be set to 0.
- mtu: the maximum transmission unit expressed in bytes.
- flags: a string of comma-separated flags on the interface.
"""
return _psplatform.net_if_stats()
# =====================================================================
# --- sensors
# =====================================================================
# Linux, macOS
if hasattr(_psplatform, "sensors_temperatures"):
[docs]
def sensors_temperatures(
fahrenheit: bool = False,
) -> dict[str, list[shwtemp]]:
"""Return hardware temperatures.
Each entry is a named tuple representing a certain hardware
sensor (it may be a CPU, an hard disk or something else,
depending on the OS and its configuration).
All temperatures are expressed in celsius unless *fahrenheit*
is set to True.
"""
def convert(n):
if n is not None:
return (float(n) * 9 / 5) + 32 if fahrenheit else n
ret = collections.defaultdict(list)
rawdict = _psplatform.sensors_temperatures()
for name, values in rawdict.items():
while values:
label, current, high, critical = values.pop(0)
current = convert(current)
high = convert(high)
critical = convert(critical)
if high and not critical:
critical = high
elif critical and not high:
high = critical
ret[name].append(_ntp.shwtemp(label, current, high, critical))
return dict(ret)
__all__.append("sensors_temperatures")
# Linux
if hasattr(_psplatform, "sensors_fans"):
[docs]
def sensors_fans() -> dict[str, list[sfan]]:
"""Return fans speed. Each entry is a named tuple
representing a certain hardware sensor.
All speed are expressed in RPM (rounds per minute).
"""
return _psplatform.sensors_fans()
__all__.append("sensors_fans")
# Linux, Windows, FreeBSD, macOS
if hasattr(_psplatform, "sensors_battery"):
[docs]
def sensors_battery() -> sbattery | None:
"""Return battery information. If no battery is installed
returns None.
- percent: battery power left as a percentage.
- secsleft: a rough approximation of how many seconds are left
before the battery runs out of power. May be
`POWER_TIME_UNLIMITED` or `POWER_TIME_UNKNOWN`.
- power_plugged: True if the AC power cable is connected.
"""
return _psplatform.sensors_battery()
__all__.append("sensors_battery")
# =====================================================================
# --- other system related functions
# =====================================================================
[docs]
def boot_time() -> float:
"""Return the system boot time expressed in seconds since the epoch
(seconds since January 1, 1970, at midnight UTC).
The returned value is based on the system clock, which means it may
be affected by changes such as manual adjustments or time
synchronization (e.g. NTP).
"""
return _psplatform.boot_time()
[docs]
def users() -> list[suser]:
"""Return users currently connected on the system as a list of
named tuples including the following fields:
- user: the name of the user
- terminal: the tty or pseudo-tty associated with the user, if any.
- host: the host name associated with the entry, if any.
- started: the creation time as a floating point number expressed in
seconds since the epoch.
- pid: the PID of the login process (None on Windows and OpenBSD).
"""
return _psplatform.users()
# =====================================================================
# --- Windows services
# =====================================================================
if WINDOWS:
def win_service_iter() -> Iterator[WindowsService]:
"""Return a generator yielding a `WindowsService` instance for
all Windows services installed.
"""
return _psplatform.win_service_iter()
def win_service_get(name) -> WindowsService:
"""Get a Windows service by *name*.
Raise `NoSuchProcess` if no service with such name exists.
"""
return _psplatform.win_service_get(name)
# =====================================================================
# --- malloc / heap
# =====================================================================
# Linux + glibc, Windows, macOS, FreeBSD, NetBSD
if hasattr(_psplatform, "heap_info"):
[docs]
def heap_info() -> pheap:
"""Return low-level heap statistics from the C heap allocator
(glibc).
- `heap_used`: the total number of bytes allocated via
malloc/free. These are typically allocations smaller than
MMAP_THRESHOLD.
- `mmap_used`: the total number of bytes allocated via `mmap()`
or via large ``malloc()`` allocations.
- `heap_count` (Windows only): number of private heaps created
via `HeapCreate()`.
"""
return _ntp.pheap(*_psplatform.heap_info())
[docs]
def heap_trim() -> None:
"""Request that the underlying allocator free any unused memory
it's holding in the heap (typically small `malloc()`
allocations).
In practice, modern allocators rarely comply, so this is not a
general-purpose memory-reduction tool and won't meaningfully
shrink RSS in real programs. Its primary value is in **leak
detection tools**.
Calling `heap_trim()` before taking measurements helps reduce
allocator noise, giving you a cleaner baseline so that changes
in `heap_used` come from the code you're testing, not from
internal allocator caching or fragmentation. Its effectiveness
depends on allocator behavior and fragmentation patterns.
"""
_psplatform.heap_trim()
__all__.append("heap_info")
__all__.append("heap_trim")
# =====================================================================
def _set_debug(value):
"""Enable or disable `PSUTIL_DEBUG` option, which prints debugging
messages to stderr.
"""
import psutil._common
psutil._common.PSUTIL_DEBUG = bool(value)
_psplatform.cext.set_debug(bool(value))
del memoize_when_activated