glances_cpu.py 14.7 KB
Newer Older
A
Alessio Sergi 已提交
1 2
# -*- coding: utf-8 -*-
#
3
# This file is part of Glances.
A
Alessio Sergi 已提交
4
#
A
Alessio Sergi 已提交
5
# Copyright (C) 2017 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.timer import getTimeSinceLastUpdate
23 24
from glances.compat import iterkeys
from glances.cpu_percent import cpu_percent
25 26
from glances.globals import LINUX
from glances.plugins.glances_core import Plugin as CorePlugin
A
flake8  
Alessio Sergi 已提交
27 28 29
from glances.plugins.glances_plugin import GlancesPlugin

import psutil
30

N
Nicolargo 已提交
31 32 33 34
# 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 已提交
35 36
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 已提交
37
                        'idle': '1.3.6.1.4.1.2021.11.11.0'},
N
Nicolargo 已提交
38
            'windows': {'percent': '1.3.6.1.2.1.25.3.3.1.2'},
N
Nicolargo 已提交
39
            'esxi': {'percent': '1.3.6.1.2.1.25.3.3.1.2'},
N
Nicolargo 已提交
40 41 42
            '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 已提交
43

44
# Define the history items list
45
# - 'name' define the stat identifier
N
Nicolargo 已提交
46
# - 'y_unit' define the Y label
47
# All items in this list will be historised if the --enable-history tag is set
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):
A
PEP 257  
Alessio Sergi 已提交
64
        """Init the CPU plugin."""
A
Alessio Sergi 已提交
65
        super(Plugin, self).__init__(args=args, items_history_list=items_history_list)
A
Alessio Sergi 已提交
66 67 68 69

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

70
        # Init stats
A
Alessio Sergi 已提交
71
        self.reset()
N
Nicolargo 已提交
72

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

N
Nicolargo 已提交
79
    def reset(self):
A
PEP 257  
Alessio Sergi 已提交
80
        """Reset/init the stats."""
81 82
        self.stats = {}

83
    @GlancesPlugin._check_decorator
84
    @GlancesPlugin._log_result_decorator
A
Alessio Sergi 已提交
85
    def update(self):
A
PEP 257  
Alessio Sergi 已提交
86
        """Update CPU stats using the input method."""
N
Nicolargo 已提交
87 88 89
        # Reset stats
        self.reset()

90
        # Grab stats into self.stats
91
        if self.input_method == 'local':
92
            self.update_local()
93
        elif self.input_method == 'snmp':
94
            self.update_snmp()
A
Alessio Sergi 已提交
95 96 97

        return self.stats

98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
    def update_local(self):
        """Update CPU stats using PSUtil."""
        # 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+)
        self.stats['total'] = cpu_percent.get()
        cpu_times_percent = psutil.cpu_times_percent(interval=0.0)
        for stat in ['user', 'system', 'idle', 'nice', 'iowait',
                     'irq', 'softirq', 'steal', 'guest', 'guest_nice']:
            if hasattr(cpu_times_percent, stat):
                self.stats[stat] = getattr(cpu_times_percent, stat)

        # Additionnal CPU stats (number of events / not as a %)
        # ctx_switches: number of context switches (voluntary + involuntary) per second
        # interrupts: number of interrupts per second
        # soft_interrupts: number of software interrupts per second. Always set to 0 on Windows and SunOS.
        # syscalls: number of system calls since boot. Always set to 0 on Linux.
        try:
            cpu_stats = psutil.cpu_stats()
        except AttributeError:
            # cpu_stats only available with PSUtil 4.1 or +
            pass
        else:
            # 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
            time_since_update = getTimeSinceLastUpdate('cpu')

            # Previous CPU stats are stored in the cpu_stats_old variable
            if not hasattr(self, 'cpu_stats_old'):
                # First call, we init the cpu_stats_old var
                self.cpu_stats_old = cpu_stats
            else:
                for stat in cpu_stats._fields:
B
Beau Hastings 已提交
134 135
                    if getattr(cpu_stats, stat) is not None:
                        self.stats[stat] = getattr(cpu_stats, stat) - getattr(self.cpu_stats_old, stat)
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188

                self.stats['time_since_update'] = time_since_update

                # Core number is needed to compute the CTX switch limit
                self.stats['cpucore'] = self.nb_log_core

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

    def update_snmp(self):
        """Update CPU stats using SNMP."""
        # 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
            self.stats['nb_log_core'] = 0
            self.stats['idle'] = 0
            for c in cpu_stats:
                if c.startswith('percent'):
                    self.stats['idle'] += float(cpu_stats['percent.3'])
                    self.stats['nb_log_core'] += 1
            if self.stats['nb_log_core'] > 0:
                self.stats['idle'] = self.stats[
                    'idle'] / self.stats['nb_log_core']
            self.stats['idle'] = 100 - self.stats['idle']
            self.stats['total'] = 100 - self.stats['idle']

        else:
            # Default behavor
            try:
                self.stats = self.get_stats_snmp(
                    snmp_oid=snmp_oid[self.short_system_name])
            except KeyError:
                self.stats = self.get_stats_snmp(
                    snmp_oid=snmp_oid['default'])

            if self.stats['idle'] == '':
                self.reset()
                return self.stats

            # Convert SNMP stats to float
            for key in iterkeys(self.stats):
                self.stats[key] = float(self.stats[key])
            self.stats['total'] = 100 - self.stats['idle']

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

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

212
    def msg_curse(self, args=None, max_width=None):
A
PEP 257  
Alessio Sergi 已提交
213
        """Return the list to display in the UI."""
A
Alessio Sergi 已提交
214 215 216
        # Init the return message
        ret = []

217
        # Only process if stats exist and plugin not disable
N
nicolargo 已提交
218
        if not self.stats or self.is_disable():
N
Nicolas Hennion 已提交
219 220
            return ret

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

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

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

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

        # Return the message with decoration
        return ret