glances_cpu.py 17.1 KB
Newer Older
A
Alessio Sergi 已提交
1 2
# -*- coding: utf-8 -*-
#
3
# This file is part of Glances.
A
Alessio Sergi 已提交
4
#
5
# Copyright (C) 2021 Nicolargo <nicolas@nicolargo.com>
A
Alessio Sergi 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Glances is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
A
PEP 257  
Alessio Sergi 已提交
19 20

"""CPU plugin."""
A
Alessio Sergi 已提交
21

22
from glances.logger import logger
23
from glances.timer import getTimeSinceLastUpdate
24 25
from glances.compat import iterkeys
from glances.cpu_percent import cpu_percent
26 27
from glances.globals import LINUX
from glances.plugins.glances_core import Plugin as CorePlugin
A
flake8  
Alessio Sergi 已提交
28 29 30
from glances.plugins.glances_plugin import GlancesPlugin

import psutil
31

N
nicolargo 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
# Fields description
fields_description = {
    'total': {'description': 'Sum of all CPU percentages (except idle).',
              'unit': 'percent'},
    'system': {'description': 'percent time spent in kernel space. System CPU time is the \
time spent running code in the Operating System kernel.',
               'unit': 'percent'},
    'user': {'description': 'CPU percent time spent in user space. \
User CPU time is the time spent on the processor running your program\'s code (or code in libraries).',
             'unit': 'percent'},
    'iowait': {'description': '*(Linux)*: percent time spent by the CPU waiting for I/O \
operations to complete.',
               'unit': 'percent'},
    'idle': {'description': 'percent of CPU used by any program. Every program or task \
that runs on a computer system occupies a certain amount of processing \
time on the CPU. If the CPU has completed all tasks it is idle.',
             'unit': 'percent'},
    'irq': {'description': '*(Linux and BSD)*: percent time spent servicing/handling \
hardware/software interrupts. Time servicing interrupts (hardware + \
software).',
            'unit': 'percent'},
    'nice': {'description': '*(Unix)*: percent time occupied by user level processes with \
a positive nice value. The time the CPU has spent running users\' \
processes that have been *niced*.',
             'unit': 'percent'},
    'steal': {'description': '*(Linux)*: percentage of time a virtual CPU waits for a real \
CPU while the hypervisor is servicing another virtual processor.',
              'unit': 'percent'},
N
nicolargo 已提交
60
    'ctx_switches': {'description': 'number of context switches (voluntary + involuntary) per \
N
nicolargo 已提交
61 62 63
second. A context switch is a procedure that a computer\'s CPU (central \
processing unit) follows to change from one task (or process) to \
another while ensuring that the tasks do not conflict.',
N
nicolargo 已提交
64 65 66 67
                     'unit': 'percent'},
    'interrupts': {'description': 'number of interrupts per second.',
                   'unit': 'percent'},
    'soft_interrupts': {'description': 'number of software interrupts per second. Always set to \
N
nicolargo 已提交
68
0 on Windows and SunOS.',
N
nicolargo 已提交
69 70 71 72 73
                        'unit': 'percent'},
    'cpucore': {'description': 'Total number of CPU core.',
                'unit': 'count'},
    'time_since_update': {'description': 'Number of seconds since last update.',
                          'unit': 'seconds'},
N
nicolargo 已提交
74 75
}

N
Nicolargo 已提交
76 77 78 79
# SNMP OID
# percentage of user CPU time: .1.3.6.1.4.1.2021.11.9.0
# percentages of system CPU time: .1.3.6.1.4.1.2021.11.10.0
# percentages of idle CPU time: .1.3.6.1.4.1.2021.11.11.0
N
Nicolargo 已提交
80 81
snmp_oid = {'default': {'user': '1.3.6.1.4.1.2021.11.9.0',
                        'system': '1.3.6.1.4.1.2021.11.10.0',
N
Nicolargo 已提交
82
                        'idle': '1.3.6.1.4.1.2021.11.11.0'},
N
Nicolargo 已提交
83
            'windows': {'percent': '1.3.6.1.2.1.25.3.3.1.2'},
N
Nicolargo 已提交
84
            'esxi': {'percent': '1.3.6.1.2.1.25.3.3.1.2'},
N
Nicolargo 已提交
85 86 87
            'netapp': {'system': '1.3.6.1.4.1.789.1.2.1.3.0',
                       'idle': '1.3.6.1.4.1.789.1.2.1.5.0',
                       'nb_log_core': '1.3.6.1.4.1.789.1.2.1.6.0'}}
A
Alessio Sergi 已提交
88

89
# Define the history items list
90
# - 'name' define the stat identifier
N
Nicolargo 已提交
91
# - 'y_unit' define the Y label
92 93 94 95 96 97
items_history_list = [{'name': 'user',
                       'description': 'User CPU usage',
                       'y_unit': '%'},
                      {'name': 'system',
                       'description': 'System CPU usage',
                       'y_unit': '%'}]
98

A
PEP 257  
Alessio Sergi 已提交
99

N
Nicolargo 已提交
100
class Plugin(GlancesPlugin):
A
Alessio Sergi 已提交
101 102 103 104
    """Glances CPU plugin.

    'stats' is a dictionary that contains the system-wide CPU utilization as a
    percentage.
A
Alessio Sergi 已提交
105 106
    """

107
    def __init__(self, args=None, config=None):
A
PEP 257  
Alessio Sergi 已提交
108
        """Init the CPU plugin."""
109 110
        super(Plugin, self).__init__(args=args,
                                     config=config,
N
nicolargo 已提交
111 112
                                     items_history_list=items_history_list,
                                     fields_description=fields_description)
A
Alessio Sergi 已提交
113 114 115 116

        # We want to display the stat in the curse interface
        self.display_curse = True

117 118 119 120 121 122
        # Call CorePlugin in order to display the core number
        try:
            self.nb_log_core = CorePlugin(args=self.args).update()["log"]
        except Exception:
            self.nb_log_core = 1

123
    @GlancesPlugin._check_decorator
124
    @GlancesPlugin._log_result_decorator
A
Alessio Sergi 已提交
125
    def update(self):
A
PEP 257  
Alessio Sergi 已提交
126
        """Update CPU stats using the input method."""
127
        # Grab stats into self.stats
128
        if self.input_method == 'local':
129
            stats = self.update_local()
130
        elif self.input_method == 'snmp':
131 132 133 134 135 136
            stats = self.update_snmp()
        else:
            stats = self.get_init_value()

        # Update the stats
        self.stats = stats
A
Alessio Sergi 已提交
137 138 139

        return self.stats

140
    def update_local(self):
A
Alessio Sergi 已提交
141
        """Update CPU stats using psutil."""
142 143 144 145 146
        # Grab CPU stats using psutil's cpu_percent and cpu_times_percent
        # Get all possible values for CPU stats: user, system, idle,
        # nice (UNIX), iowait (Linux), irq (Linux, FreeBSD), steal (Linux 2.6.11+)
        # The following stats are returned by the API but not displayed in the UI:
        # softirq (Linux), guest (Linux 2.6.24+), guest_nice (Linux 3.2.0+)
147 148 149 150 151

        # Init new stats
        stats = self.get_init_value()

        stats['total'] = cpu_percent.get()
152 153
        # Grab: 'user', 'system', 'idle', 'nice', 'iowait',
        #       'irq', 'softirq', 'steal', 'guest', 'guest_nice'
154
        cpu_times_percent = psutil.cpu_times_percent(interval=0.0)
155 156
        for stat in cpu_times_percent._fields:
            stats[stat] = getattr(cpu_times_percent, stat)
157

A
Alessio Sergi 已提交
158
        # Additional CPU stats (number of events not as a %; psutil>=4.1.0)
159 160 161 162
        # - ctx_switches: number of context switches (voluntary + involuntary) since boot.
        # - interrupts: number of interrupts since boot.
        # - soft_interrupts: number of software interrupts since boot. Always set to 0 on Windows and SunOS.
        # - syscalls: number of system calls since boot. Always set to 0 on Linux.
A
Alessio Sergi 已提交
163
        cpu_stats = psutil.cpu_stats()
164

A
Alessio Sergi 已提交
165 166 167
        # By storing time data we enable Rx/s and Tx/s calculations in the
        # XML/RPC API, which would otherwise be overly difficult work
        # for users of the API
168 169 170 171
        stats['time_since_update'] = getTimeSinceLastUpdate('cpu')

        # Core number is needed to compute the CTX switch limit
        stats['cpucore'] = self.nb_log_core
A
Alessio Sergi 已提交
172 173 174

        # Previous CPU stats are stored in the cpu_stats_old variable
        if not hasattr(self, 'cpu_stats_old'):
175 176 177 178
            # Init the stats (needed to have the key name for export)
            for stat in cpu_stats._fields:
                # @TODO: better to set it to None but should refactor views and UI...
                stats[stat] = 0
179
        else:
180
            # Others calls...
A
Alessio Sergi 已提交
181 182
            for stat in cpu_stats._fields:
                if getattr(cpu_stats, stat) is not None:
183
                    stats[stat] = getattr(cpu_stats, stat) - getattr(self.cpu_stats_old, stat)
A
Alessio Sergi 已提交
184

185 186
        # Save stats to compute next step
        self.cpu_stats_old = cpu_stats
187

188 189
        return stats

190 191
    def update_snmp(self):
        """Update CPU stats using SNMP."""
192 193 194 195

        # Init new stats
        stats = self.get_init_value()

196 197 198 199 200 201 202 203 204 205 206 207
        # Update stats using SNMP
        if self.short_system_name in ('windows', 'esxi'):
            # Windows or VMWare ESXi
            # You can find the CPU utilization of windows system by querying the oid
            # Give also the number of core (number of element in the table)
            try:
                cpu_stats = self.get_stats_snmp(snmp_oid=snmp_oid[self.short_system_name],
                                                bulk=True)
            except KeyError:
                self.reset()

            # Iter through CPU and compute the idle CPU stats
208 209
            stats['nb_log_core'] = 0
            stats['idle'] = 0
210 211
            for c in cpu_stats:
                if c.startswith('percent'):
212 213 214 215 216 217
                    stats['idle'] += float(cpu_stats['percent.3'])
                    stats['nb_log_core'] += 1
            if stats['nb_log_core'] > 0:
                stats['idle'] = stats['idle'] / stats['nb_log_core']
            stats['idle'] = 100 - stats['idle']
            stats['total'] = 100 - stats['idle']
218 219 220 221

        else:
            # Default behavor
            try:
222
                stats = self.get_stats_snmp(
223 224
                    snmp_oid=snmp_oid[self.short_system_name])
            except KeyError:
225
                stats = self.get_stats_snmp(
226 227
                    snmp_oid=snmp_oid['default'])

228
            if stats['idle'] == '':
229 230 231 232
                self.reset()
                return self.stats

            # Convert SNMP stats to float
233 234 235 236 237
            for key in iterkeys(stats):
                stats[key] = float(stats[key])
            stats['total'] = 100 - stats['idle']

        return stats
238

239
    def update_views(self):
A
PEP 257  
Alessio Sergi 已提交
240
        """Update stats views."""
241
        # Call the father's method
A
Alessio Sergi 已提交
242
        super(Plugin, self).update_views()
243 244 245

        # Add specifics informations
        # Alert and log
246
        for key in ['user', 'system', 'iowait', 'total']:
247 248 249
            if key in self.stats:
                self.views[key]['decoration'] = self.get_alert_log(self.stats[key], header=key)
        # Alert only
250
        for key in ['steal']:
251 252
            if key in self.stats:
                self.views[key]['decoration'] = self.get_alert(self.stats[key], header=key)
253 254 255 256
        # Alert only but depend on Core number
        for key in ['ctx_switches']:
            if key in self.stats:
                self.views[key]['decoration'] = self.get_alert(self.stats[key], maximum=100 * self.stats['cpucore'], header=key)
257
        # Optional
258
        for key in ['nice', 'irq', 'idle', 'steal', 'ctx_switches', 'interrupts', 'soft_interrupts', 'syscalls']:
259 260 261
            if key in self.stats:
                self.views[key]['optional'] = True

262
    def msg_curse(self, args=None, max_width=None):
A
PEP 257  
Alessio Sergi 已提交
263
        """Return the list to display in the UI."""
A
Alessio Sergi 已提交
264 265 266
        # Init the return message
        ret = []

267
        # Only process if stats exist and plugin not disable
N
nicolargo 已提交
268
        if not self.stats or self.args.percpu or self.is_disable():
N
Nicolas Hennion 已提交
269 270
            return ret

A
Alessio Sergi 已提交
271
        # Build the string message
N
Nicolargo 已提交
272 273
        # If user stat is not here, display only idle / total CPU usage (for
        # exemple on Windows OS)
274
        idle_tag = 'user' not in self.stats
275

A
Alessio Sergi 已提交
276
        # Header
277
        msg = '{}'.format('CPU')
A
Alessio Sergi 已提交
278
        ret.append(self.curse_add_line(msg, "TITLE"))
279 280 281 282 283 284 285 286
        trend_user = self.get_trend('user')
        trend_system = self.get_trend('system')
        if trend_user is None or trend_user is None:
            trend_cpu = None
        else:
            trend_cpu = trend_user + trend_system
        msg = ' {:4}'.format(self.trend_msg(trend_cpu))
        ret.append(self.curse_add_line(msg))
A
Alessio Sergi 已提交
287
        # Total CPU usage
288
        msg = '{:5.1f}%'.format(self.stats['total'])
289 290 291 292 293 294 295
        ret.append(self.curse_add_line(
            msg, self.get_views(key='total', option='decoration')))
        # Idle CPU
        if 'idle' in self.stats and not idle_tag:
            msg = '  {:8}'.format('idle:')
            ret.append(self.curse_add_line(msg))
            msg = '{:5.1f}%'.format(self.stats['idle'])
296
            ret.append(self.curse_add_line(msg))
297 298
        # ctx_switches
        if 'ctx_switches' in self.stats:
299
            msg = '  {:8}'.format('ctx_sw:')
300
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='ctx_switches', option='optional')))
301
            msg = '{:>5}'.format(self.auto_unit(int(self.stats['ctx_switches'] // self.stats['time_since_update']),
N
nicolargo 已提交
302
                                                min_symbol='K'))
303 304 305 306
            ret.append(self.curse_add_line(
                msg, self.get_views(key='ctx_switches', option='decoration'),
                optional=self.get_views(key='ctx_switches', option='optional')))

A
Alessio Sergi 已提交
307 308 309
        # New line
        ret.append(self.curse_new_line())
        # User CPU
310
        if 'user' in self.stats:
311
            msg = '{:8}'.format('user:')
A
Alessio Sergi 已提交
312
            ret.append(self.curse_add_line(msg))
313
            msg = '{:5.1f}%'.format(self.stats['user'])
N
Nicolargo 已提交
314
            ret.append(self.curse_add_line(
315
                msg, self.get_views(key='user', option='decoration')))
316
        elif 'idle' in self.stats:
317
            msg = '{:8}'.format('idle:')
318
            ret.append(self.curse_add_line(msg))
319
            msg = '{:5.1f}%'.format(self.stats['idle'])
320
            ret.append(self.curse_add_line(msg))
A
Alessio Sergi 已提交
321 322
        # IRQ CPU
        if 'irq' in self.stats:
323
            msg = '  {:8}'.format('irq:')
324
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='irq', option='optional')))
325
            msg = '{:5.1f}%'.format(self.stats['irq'])
326
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='irq', option='optional')))
327 328
        # interrupts
        if 'interrupts' in self.stats:
329
            msg = '  {:8}'.format('inter:')
330
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='interrupts', option='optional')))
331
            msg = '{:>5}'.format(int(self.stats['interrupts'] // self.stats['time_since_update']))
332 333
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='interrupts', option='optional')))

A
Alessio Sergi 已提交
334 335 336
        # New line
        ret.append(self.curse_new_line())
        # System CPU
337
        if 'system' in self.stats and not idle_tag:
338
            msg = '{:8}'.format('system:')
A
Alessio Sergi 已提交
339
            ret.append(self.curse_add_line(msg))
340
            msg = '{:5.1f}%'.format(self.stats['system'])
N
Nicolargo 已提交
341
            ret.append(self.curse_add_line(
342
                msg, self.get_views(key='system', option='decoration')))
343
        else:
344
            msg = '{:8}'.format('core:')
345
            ret.append(self.curse_add_line(msg))
346
            msg = '{:>6}'.format(self.stats['nb_log_core'])
347
            ret.append(self.curse_add_line(msg))
348 349 350
        # Nice CPU
        if 'nice' in self.stats:
            msg = '  {:8}'.format('nice:')
N
Nicolargo 已提交
351
            ret.append(self.curse_add_line(
352 353 354 355
                msg, optional=self.get_views(key='nice', option='optional')))
            msg = '{:5.1f}%'.format(self.stats['nice'])
            ret.append(self.curse_add_line(
                msg, optional=self.get_views(key='nice', option='optional')))
356 357
        # soft_interrupts
        if 'soft_interrupts' in self.stats:
358
            msg = '  {:8}'.format('sw_int:')
359
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='soft_interrupts', option='optional')))
360
            msg = '{:>5}'.format(int(self.stats['soft_interrupts'] // self.stats['time_since_update']))
361 362
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='soft_interrupts', option='optional')))

A
Alessio Sergi 已提交
363 364
        # New line
        ret.append(self.curse_new_line())
365 366 367 368 369 370 371 372 373
        # IOWait CPU
        if 'iowait' in self.stats:
            msg = '{:8}'.format('iowait:')
            ret.append(self.curse_add_line(
                msg, optional=self.get_views(key='iowait', option='optional')))
            msg = '{:5.1f}%'.format(self.stats['iowait'])
            ret.append(self.curse_add_line(
                msg, self.get_views(key='iowait', option='decoration'),
                optional=self.get_views(key='iowait', option='optional')))
A
Alessio Sergi 已提交
374 375
        # Steal CPU usage
        if 'steal' in self.stats:
376
            msg = '  {:8}'.format('steal:')
377
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='steal', option='optional')))
378
            msg = '{:5.1f}%'.format(self.stats['steal'])
N
Nicolargo 已提交
379
            ret.append(self.curse_add_line(
380 381
                msg, self.get_views(key='steal', option='decoration'),
                optional=self.get_views(key='steal', option='optional')))
382 383 384
        # syscalls
        # syscalls: number of system calls since boot. Always set to 0 on Linux. (do not display)
        if 'syscalls' in self.stats and not LINUX:
385
            msg = '  {:8}'.format('syscal:')
386
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='syscalls', option='optional')))
387
            msg = '{:>5}'.format(int(self.stats['syscalls'] // self.stats['time_since_update']))
388
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='syscalls', option='optional')))
A
Alessio Sergi 已提交
389 390 391

        # Return the message with decoration
        return ret