glances_cpu.py 14.6 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
# 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 已提交
36 37
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 已提交
38
                        'idle': '1.3.6.1.4.1.2021.11.11.0'},
N
Nicolargo 已提交
39
            'windows': {'percent': '1.3.6.1.2.1.25.3.3.1.2'},
N
Nicolargo 已提交
40
            'esxi': {'percent': '1.3.6.1.2.1.25.3.3.1.2'},
N
Nicolargo 已提交
41 42 43
            '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 已提交
44

45
# Define the history items list
46
# - 'name' define the stat identifier
N
Nicolargo 已提交
47
# - 'y_unit' define the Y label
48 49 50 51 52 53
items_history_list = [{'name': 'user',
                       'description': 'User CPU usage',
                       'y_unit': '%'},
                      {'name': 'system',
                       'description': 'System CPU usage',
                       'y_unit': '%'}]
54

A
PEP 257  
Alessio Sergi 已提交
55

N
Nicolargo 已提交
56
class Plugin(GlancesPlugin):
A
Alessio Sergi 已提交
57 58 59 60
    """Glances CPU plugin.

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

63
    def __init__(self, args=None, config=None):
A
PEP 257  
Alessio Sergi 已提交
64
        """Init the CPU plugin."""
65 66 67
        super(Plugin, self).__init__(args=args,
                                     config=config,
                                     items_history_list=items_history_list)
A
Alessio Sergi 已提交
68 69 70 71

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

72 73 74 75 76 77
        # 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

78
    @GlancesPlugin._check_decorator
79
    @GlancesPlugin._log_result_decorator
A
Alessio Sergi 已提交
80
    def update(self):
A
PEP 257  
Alessio Sergi 已提交
81
        """Update CPU stats using the input method."""
82
        # Grab stats into self.stats
83
        if self.input_method == 'local':
84
            stats = self.update_local()
85
        elif self.input_method == 'snmp':
86 87 88 89 90 91
            stats = self.update_snmp()
        else:
            stats = self.get_init_value()

        # Update the stats
        self.stats = stats
A
Alessio Sergi 已提交
92 93 94

        return self.stats

95
    def update_local(self):
A
Alessio Sergi 已提交
96
        """Update CPU stats using psutil."""
97 98 99 100 101
        # 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+)
102 103 104 105 106

        # Init new stats
        stats = self.get_init_value()

        stats['total'] = cpu_percent.get()
107 108
        # Grab: 'user', 'system', 'idle', 'nice', 'iowait',
        #       'irq', 'softirq', 'steal', 'guest', 'guest_nice'
109
        cpu_times_percent = psutil.cpu_times_percent(interval=0.0)
110 111
        for stat in cpu_times_percent._fields:
            stats[stat] = getattr(cpu_times_percent, stat)
112

A
Alessio Sergi 已提交
113
        # Additional CPU stats (number of events not as a %; psutil>=4.1.0)
114 115 116 117
        # - 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 已提交
118
        cpu_stats = psutil.cpu_stats()
119

A
Alessio Sergi 已提交
120 121 122
        # 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
123 124 125 126
        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 已提交
127 128 129

        # Previous CPU stats are stored in the cpu_stats_old variable
        if not hasattr(self, 'cpu_stats_old'):
130 131 132 133
            # 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
134
        else:
135
            # Others calls...
A
Alessio Sergi 已提交
136 137
            for stat in cpu_stats._fields:
                if getattr(cpu_stats, stat) is not None:
138
                    stats[stat] = getattr(cpu_stats, stat) - getattr(self.cpu_stats_old, stat)
A
Alessio Sergi 已提交
139

140 141
        # Save stats to compute next step
        self.cpu_stats_old = cpu_stats
142

143 144
        return stats

145 146
    def update_snmp(self):
        """Update CPU stats using SNMP."""
147 148 149 150

        # Init new stats
        stats = self.get_init_value()

151 152 153 154 155 156 157 158 159 160 161 162
        # 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
163 164
            stats['nb_log_core'] = 0
            stats['idle'] = 0
165 166
            for c in cpu_stats:
                if c.startswith('percent'):
167 168 169 170 171 172
                    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']
173 174 175 176

        else:
            # Default behavor
            try:
177
                stats = self.get_stats_snmp(
178 179
                    snmp_oid=snmp_oid[self.short_system_name])
            except KeyError:
180
                stats = self.get_stats_snmp(
181 182
                    snmp_oid=snmp_oid['default'])

183
            if stats['idle'] == '':
184 185 186 187
                self.reset()
                return self.stats

            # Convert SNMP stats to float
188 189 190 191 192
            for key in iterkeys(stats):
                stats[key] = float(stats[key])
            stats['total'] = 100 - stats['idle']

        return stats
193

194
    def update_views(self):
A
PEP 257  
Alessio Sergi 已提交
195
        """Update stats views."""
196
        # Call the father's method
A
Alessio Sergi 已提交
197
        super(Plugin, self).update_views()
198 199 200

        # Add specifics informations
        # Alert and log
201
        for key in ['user', 'system', 'iowait', 'total']:
202 203 204
            if key in self.stats:
                self.views[key]['decoration'] = self.get_alert_log(self.stats[key], header=key)
        # Alert only
205
        for key in ['steal']:
206 207
            if key in self.stats:
                self.views[key]['decoration'] = self.get_alert(self.stats[key], header=key)
208 209 210 211
        # 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)
212
        # Optional
213
        for key in ['nice', 'irq', 'idle', 'steal', 'ctx_switches', 'interrupts', 'soft_interrupts', 'syscalls']:
214 215 216
            if key in self.stats:
                self.views[key]['optional'] = True

217
    def msg_curse(self, args=None, max_width=None):
A
PEP 257  
Alessio Sergi 已提交
218
        """Return the list to display in the UI."""
A
Alessio Sergi 已提交
219 220 221
        # Init the return message
        ret = []

222
        # Only process if stats exist and plugin not disable
N
nicolargo 已提交
223
        if not self.stats or self.args.percpu or self.is_disable():
N
Nicolas Hennion 已提交
224 225
            return ret

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

A
Alessio Sergi 已提交
231
        # Header
232
        msg = '{}'.format('CPU')
A
Alessio Sergi 已提交
233
        ret.append(self.curse_add_line(msg, "TITLE"))
234 235 236 237 238 239 240 241
        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 已提交
242
        # Total CPU usage
243
        msg = '{:5.1f}%'.format(self.stats['total'])
244 245 246 247 248 249 250
        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'])
251
            ret.append(self.curse_add_line(msg))
252 253
        # ctx_switches
        if 'ctx_switches' in self.stats:
254
            msg = '  {:8}'.format('ctx_sw:')
255
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='ctx_switches', option='optional')))
256
            msg = '{:>5}'.format(self.auto_unit(int(self.stats['ctx_switches'] // self.stats['time_since_update']),
N
nicolargo 已提交
257
                                                min_symbol='K'))
258 259 260 261
            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 已提交
262 263 264
        # New line
        ret.append(self.curse_new_line())
        # User CPU
265
        if 'user' in self.stats:
266
            msg = '{:8}'.format('user:')
A
Alessio Sergi 已提交
267
            ret.append(self.curse_add_line(msg))
268
            msg = '{:5.1f}%'.format(self.stats['user'])
N
Nicolargo 已提交
269
            ret.append(self.curse_add_line(
270
                msg, self.get_views(key='user', option='decoration')))
271
        elif 'idle' in self.stats:
272
            msg = '{:8}'.format('idle:')
273
            ret.append(self.curse_add_line(msg))
274
            msg = '{:5.1f}%'.format(self.stats['idle'])
275
            ret.append(self.curse_add_line(msg))
A
Alessio Sergi 已提交
276 277
        # IRQ CPU
        if 'irq' in self.stats:
278
            msg = '  {:8}'.format('irq:')
279
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='irq', option='optional')))
280
            msg = '{:5.1f}%'.format(self.stats['irq'])
281
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='irq', option='optional')))
282 283
        # interrupts
        if 'interrupts' in self.stats:
284
            msg = '  {:8}'.format('inter:')
285
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='interrupts', option='optional')))
286
            msg = '{:>5}'.format(int(self.stats['interrupts'] // self.stats['time_since_update']))
287 288
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='interrupts', option='optional')))

A
Alessio Sergi 已提交
289 290 291
        # New line
        ret.append(self.curse_new_line())
        # System CPU
292
        if 'system' in self.stats and not idle_tag:
293
            msg = '{:8}'.format('system:')
A
Alessio Sergi 已提交
294
            ret.append(self.curse_add_line(msg))
295
            msg = '{:5.1f}%'.format(self.stats['system'])
N
Nicolargo 已提交
296
            ret.append(self.curse_add_line(
297
                msg, self.get_views(key='system', option='decoration')))
298
        else:
299
            msg = '{:8}'.format('core:')
300
            ret.append(self.curse_add_line(msg))
301
            msg = '{:>6}'.format(self.stats['nb_log_core'])
302
            ret.append(self.curse_add_line(msg))
303 304 305
        # Nice CPU
        if 'nice' in self.stats:
            msg = '  {:8}'.format('nice:')
N
Nicolargo 已提交
306
            ret.append(self.curse_add_line(
307 308 309 310
                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')))
311 312
        # soft_interrupts
        if 'soft_interrupts' in self.stats:
313
            msg = '  {:8}'.format('sw_int:')
314
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='soft_interrupts', option='optional')))
315
            msg = '{:>5}'.format(int(self.stats['soft_interrupts'] // self.stats['time_since_update']))
316 317
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='soft_interrupts', option='optional')))

A
Alessio Sergi 已提交
318 319
        # New line
        ret.append(self.curse_new_line())
320 321 322 323 324 325 326 327 328
        # 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 已提交
329 330
        # Steal CPU usage
        if 'steal' in self.stats:
331
            msg = '  {:8}'.format('steal:')
332
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='steal', option='optional')))
333
            msg = '{:5.1f}%'.format(self.stats['steal'])
N
Nicolargo 已提交
334
            ret.append(self.curse_add_line(
335 336
                msg, self.get_views(key='steal', option='decoration'),
                optional=self.get_views(key='steal', option='optional')))
337 338 339
        # 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:
340
            msg = '  {:8}'.format('syscal:')
341
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='syscalls', option='optional')))
342
            msg = '{:>5}'.format(int(self.stats['syscalls'] // self.stats['time_since_update']))
343
            ret.append(self.curse_add_line(msg, optional=self.get_views(key='syscalls', option='optional')))
A
Alessio Sergi 已提交
344 345 346

        # Return the message with decoration
        return ret