Skip to content

Commit

Permalink
chg: plugin(percpu) - show times based on host OS
Browse files Browse the repository at this point in the history
  • Loading branch information
RazCrimson committed Jul 1, 2024
1 parent 46abd4b commit 6af2340
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
4 changes: 4 additions & 0 deletions glances/cpu_percent.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ class PerCpuPercentInfo(TypedDict):
steal: Optional[float]
guest: Optional[float]
guest_nice: Optional[float]
dpc: Optional[float]
interrupt: Optional[float]


class CpuPercent:
Expand Down Expand Up @@ -146,6 +148,8 @@ def _compute_percpu(self) -> List[PerCpuPercentInfo]:
'steal': cpu_times.steal if hasattr(cpu_times, 'steal') else None,
'guest': cpu_times.guest if hasattr(cpu_times, 'guest') else None,
'guest_nice': cpu_times.steal if hasattr(cpu_times, 'guest_nice') else None,
'dpc': cpu_times.dpc if hasattr(cpu_times, 'dpc') else None,
'interrupt': cpu_times.interrupt if hasattr(cpu_times, 'interrupt') else None,
}
for cpu_number, cpu_times in psutil_percpu
]
Expand Down
25 changes: 20 additions & 5 deletions glances/plugins/percpu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"""Per-CPU plugin."""

from glances.cpu_percent import cpu_percent
from glances.globals import BSD, LINUX, MACOS, WINDOWS
from glances.plugins.plugin.model import GlancesPluginModel

# Fields description
Expand Down Expand Up @@ -76,6 +77,14 @@
'description': '*(Linux)*: percent of time spent handling software interrupts.',
'unit': 'percent',
},
'dpc': {
'description': '*(Windows)*: percent of time spent handling deferred procedure calls.',
'unit': 'percent',
},
'interrupt': {
'description': '*(Windows)*: percent of time spent handling software interrupts.',
'unit': 'percent',
},
}

# Define the history items list
Expand Down Expand Up @@ -140,11 +149,17 @@ def msg_curse(self, args=None, max_width=None):
if not self.stats or not self.args.percpu or self.is_disabled():
return ret

# Define the default header
all_headers = ['user', 'system', 'idle', 'iowait', 'steal']

# Determine applicable headers
header = [h for h in all_headers if self.stats[0].get(h) is not None]
# Define the headers based on OS
header = ['user', 'system']

if LINUX:
header.extend(['iowait', 'idle', 'irq', 'nice', 'steal', 'guest'])
elif MACOS:
header.extend(['idle', 'nice'])
elif BSD:
header.extend(['idle', 'irq', 'nice'])
elif WINDOWS:
header.extend(['dpc', 'interrupt'])

# Build the string message
if self.is_disabled('quicklook'):
Expand Down

0 comments on commit 6af2340

Please sign in to comment.