mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-03 03:52:15 +03:00
Merge branch 'issue2849' into develop
This commit is contained in:
commit
3928007169
@ -17,36 +17,30 @@ from glances.timer import Timer
|
|||||||
class CpuPercent:
|
class CpuPercent:
|
||||||
"""Get and store the CPU percent."""
|
"""Get and store the CPU percent."""
|
||||||
|
|
||||||
def __init__(self, cached_timer_cpu=3):
|
def __init__(self, cached_timer_cpu=2):
|
||||||
self.cpu_info = {'cpu_name': None, 'cpu_hz_current': None, 'cpu_hz': None}
|
|
||||||
self.cpu_percent = 0
|
|
||||||
self.percpu_percent = []
|
|
||||||
|
|
||||||
# Get CPU name
|
|
||||||
self.cpu_info['cpu_name'] = self.__get_cpu_name()
|
|
||||||
|
|
||||||
# cached_timer_cpu is the minimum time interval between stats updates
|
# cached_timer_cpu is the minimum time interval between stats updates
|
||||||
# since last update is passed (will retrieve old cached info instead)
|
# since last update is passed (will retrieve old cached info instead)
|
||||||
self.cached_timer_cpu = cached_timer_cpu
|
self.cached_timer_cpu = cached_timer_cpu
|
||||||
self.timer_cpu = Timer(0)
|
|
||||||
self.timer_percpu = Timer(0)
|
|
||||||
|
|
||||||
# psutil.cpu_freq() consumes lots of CPU
|
# psutil.cpu_freq() consumes lots of CPU
|
||||||
# So refresh the stats every refresh*2 (6 seconds)
|
# So refresh CPU frequency stats every refresh * 2
|
||||||
self.cached_timer_cpu_info = cached_timer_cpu * 2
|
self.cached_timer_cpu_info = cached_timer_cpu * 2
|
||||||
|
|
||||||
|
# Get CPU name
|
||||||
self.timer_cpu_info = Timer(0)
|
self.timer_cpu_info = Timer(0)
|
||||||
|
self.cpu_info = {'cpu_name': self.__get_cpu_name(), 'cpu_hz_current': None, 'cpu_hz': None}
|
||||||
|
|
||||||
|
# Warning from PsUtil documentation
|
||||||
|
# The first time this function is called with interval = 0.0 or None
|
||||||
|
# it will return a meaningless 0.0 value which you are supposed to ignore.
|
||||||
|
self.timer_cpu = Timer(0)
|
||||||
|
self.cpu_percent = self.get_cpu()
|
||||||
|
self.timer_percpu = Timer(0)
|
||||||
|
self.percpu_percent = self.get_percpu()
|
||||||
|
|
||||||
def get_key(self):
|
def get_key(self):
|
||||||
"""Return the key of the per CPU list."""
|
"""Return the key of the per CPU list."""
|
||||||
return 'cpu_number'
|
return 'cpu_number'
|
||||||
|
|
||||||
def get(self, percpu=False):
|
|
||||||
"""Update and/or return the CPU using the psutil library.
|
|
||||||
If percpu, return the percpu stats"""
|
|
||||||
if percpu:
|
|
||||||
return self.__get_percpu()
|
|
||||||
return self.__get_cpu()
|
|
||||||
|
|
||||||
def get_info(self):
|
def get_info(self):
|
||||||
"""Get additional information about the CPU"""
|
"""Get additional information about the CPU"""
|
||||||
# Never update more than 1 time per cached_timer_cpu_info
|
# Never update more than 1 time per cached_timer_cpu_info
|
||||||
@ -84,21 +78,26 @@ class CpuPercent:
|
|||||||
break
|
break
|
||||||
return ret if ret else 'CPU'
|
return ret if ret else 'CPU'
|
||||||
|
|
||||||
def __get_cpu(self):
|
def get_cpu(self):
|
||||||
"""Update and/or return the CPU using the psutil library."""
|
"""Update and/or return the CPU using the psutil library."""
|
||||||
# Never update more than 1 time per cached_timer_cpu
|
# Never update more than 1 time per cached_timer_cpu
|
||||||
if self.timer_cpu.finished():
|
if self.timer_cpu.finished():
|
||||||
self.cpu_percent = psutil.cpu_percent(interval=0.0)
|
|
||||||
# Reset timer for cache
|
# Reset timer for cache
|
||||||
self.timer_cpu.reset(duration=self.cached_timer_cpu)
|
self.timer_cpu.reset(duration=self.cached_timer_cpu)
|
||||||
|
# Update the stats
|
||||||
|
self.cpu_percent = psutil.cpu_percent(interval=0.0)
|
||||||
return self.cpu_percent
|
return self.cpu_percent
|
||||||
|
|
||||||
def __get_percpu(self):
|
def get_percpu(self):
|
||||||
"""Update and/or return the per CPU list using the psutil library."""
|
"""Update and/or return the per CPU list using the psutil library."""
|
||||||
# Never update more than 1 time per cached_timer_cpu
|
# Never update more than 1 time per cached_timer_cpu
|
||||||
if self.timer_percpu.finished():
|
if self.timer_percpu.finished():
|
||||||
self.percpu_percent = []
|
# Reset timer for cache
|
||||||
for cpu_number, cputimes in enumerate(psutil.cpu_times_percent(interval=0.0, percpu=True)):
|
self.timer_percpu.reset(duration=self.cached_timer_cpu)
|
||||||
|
# Get stats
|
||||||
|
percpu_percent = []
|
||||||
|
psutil_percpu = enumerate(psutil.cpu_times_percent(interval=0.0, percpu=True))
|
||||||
|
for cpu_number, cputimes in psutil_percpu:
|
||||||
cpu = {
|
cpu = {
|
||||||
'key': self.get_key(),
|
'key': self.get_key(),
|
||||||
'cpu_number': cpu_number,
|
'cpu_number': cpu_number,
|
||||||
@ -123,9 +122,9 @@ class CpuPercent:
|
|||||||
if hasattr(cputimes, 'guest_nice'):
|
if hasattr(cputimes, 'guest_nice'):
|
||||||
cpu['guest_nice'] = cputimes.guest_nice
|
cpu['guest_nice'] = cputimes.guest_nice
|
||||||
# Append new CPU to the list
|
# Append new CPU to the list
|
||||||
self.percpu_percent.append(cpu)
|
percpu_percent.append(cpu)
|
||||||
# Reset timer for cache
|
# Update stats
|
||||||
self.timer_percpu.reset(duration=self.cached_timer_cpu)
|
self.percpu_percent = percpu_percent
|
||||||
return self.percpu_percent
|
return self.percpu_percent
|
||||||
|
|
||||||
|
|
||||||
|
@ -165,8 +165,6 @@ class PluginModel(GlancesPluginModel):
|
|||||||
stats = self.update_local()
|
stats = self.update_local()
|
||||||
elif self.input_method == 'snmp':
|
elif self.input_method == 'snmp':
|
||||||
stats = self.update_snmp()
|
stats = self.update_snmp()
|
||||||
else:
|
|
||||||
stats = self.get_init_value()
|
|
||||||
|
|
||||||
# Update the stats
|
# Update the stats
|
||||||
self.stats = stats
|
self.stats = stats
|
||||||
@ -185,7 +183,7 @@ class PluginModel(GlancesPluginModel):
|
|||||||
# Init new stats
|
# Init new stats
|
||||||
stats = self.get_init_value()
|
stats = self.get_init_value()
|
||||||
|
|
||||||
stats['total'] = cpu_percent.get()
|
stats['total'] = cpu_percent.get_cpu()
|
||||||
|
|
||||||
# Standards stats
|
# Standards stats
|
||||||
# - user: time spent by normal processes executing in user mode; on Linux this also includes guest time
|
# - user: time spent by normal processes executing in user mode; on Linux this also includes guest time
|
||||||
|
@ -120,16 +120,12 @@ class PluginModel(GlancesPluginModel):
|
|||||||
@GlancesPluginModel._log_result_decorator
|
@GlancesPluginModel._log_result_decorator
|
||||||
def update(self):
|
def update(self):
|
||||||
"""Update per-CPU stats using the input method."""
|
"""Update per-CPU stats using the input method."""
|
||||||
# Init new stats
|
# Grab per-CPU stats using psutil's
|
||||||
stats = self.get_init_value()
|
|
||||||
|
|
||||||
# Grab per-CPU stats using psutil's cpu_percent(percpu=True) and
|
|
||||||
# cpu_times_percent(percpu=True) methods
|
|
||||||
if self.input_method == 'local':
|
if self.input_method == 'local':
|
||||||
stats = cpu_percent.get(percpu=True)
|
stats = cpu_percent.get_percpu()
|
||||||
else:
|
else:
|
||||||
# Update stats using SNMP
|
# Update stats using SNMP
|
||||||
pass
|
stats = self.get_init_value()
|
||||||
|
|
||||||
# Update the stats
|
# Update the stats
|
||||||
self.stats = stats
|
self.stats = stats
|
||||||
|
@ -118,8 +118,8 @@ class PluginModel(GlancesPluginModel):
|
|||||||
|
|
||||||
# Get the CPU percent value (global and per core)
|
# Get the CPU percent value (global and per core)
|
||||||
# Stats is shared across all plugins
|
# Stats is shared across all plugins
|
||||||
stats['cpu'] = cpu_percent.get()
|
stats['cpu'] = cpu_percent.get_cpu()
|
||||||
stats['percpu'] = cpu_percent.get(percpu=True)
|
stats['percpu'] = cpu_percent.get_percpu()
|
||||||
|
|
||||||
# Get the virtual and swap memory
|
# Get the virtual and swap memory
|
||||||
stats['mem'] = psutil.virtual_memory().percent
|
stats['mem'] = psutil.virtual_memory().percent
|
||||||
|
@ -260,19 +260,13 @@ class GlancesStats:
|
|||||||
self._plugins[p].update_views()
|
self._plugins[p].update_views()
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
"""Wrapper method to update the stats.
|
"""Wrapper method to update all stats.
|
||||||
|
|
||||||
Only called by standalone and server modes
|
Only called by standalone and server modes
|
||||||
"""
|
"""
|
||||||
threads = []
|
|
||||||
# Start update of all enable plugins
|
# Start update of all enable plugins
|
||||||
for p in self.getPluginsList():
|
for p in self.getPluginsList(enable=True):
|
||||||
thread = threading.Thread(target=self.__update_plugin, args=(p,))
|
self.__update_plugin(p)
|
||||||
thread.start()
|
|
||||||
threads.append(thread)
|
|
||||||
# Wait the end of the update
|
|
||||||
for t in threads:
|
|
||||||
t.join()
|
|
||||||
|
|
||||||
def export(self, input_stats=None):
|
def export(self, input_stats=None):
|
||||||
"""Export all the stats.
|
"""Export all the stats.
|
||||||
|
25
test-data/issues/issue2849.py
Normal file
25
test-data/issues/issue2849.py
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import sys
|
||||||
|
import time
|
||||||
|
|
||||||
|
sys.path.insert(0, '../glances')
|
||||||
|
|
||||||
|
###########
|
||||||
|
|
||||||
|
# from glances.cpu_percent import cpu_percent
|
||||||
|
|
||||||
|
# for _ in range(0, 5):
|
||||||
|
# print([i['total'] for i in cpu_percent.get_percpu()])
|
||||||
|
# time.sleep(2)
|
||||||
|
|
||||||
|
###########
|
||||||
|
|
||||||
|
from glances.main import GlancesMain
|
||||||
|
from glances.stats import GlancesStats
|
||||||
|
|
||||||
|
core = GlancesMain()
|
||||||
|
stats = GlancesStats(config=core.get_config(), args=core.get_args())
|
||||||
|
|
||||||
|
for _ in range(0, 5):
|
||||||
|
stats.update()
|
||||||
|
print([i['total'] for i in stats.get_plugin('percpu').get_raw()])
|
||||||
|
time.sleep(2)
|
Loading…
Reference in New Issue
Block a user