Setting IRQ plugin to off by default

pull/966/head
Alessio Sergi 2016-11-11 11:11:11 +01:00
parent f7b22d34e2
commit 842f65dbf2
4 changed files with 11 additions and 9 deletions

6
NEWS
View File

@ -9,7 +9,11 @@ Deprecated:
* Deprecate Windows Curse UI: automaticaly open Web Browser for the standalone mode (issue #946)
Enhancements and news features:
Changes:
* IRQ plugin off by default. '--disable-irq' option replaced by '--enable-irq'.
Enhancements and new features:
* Add ZeroMQ exporter (issue #939)
* Add CouchDB exporter (issue #928)

View File

@ -117,8 +117,6 @@ Start the client browser (browser mode):\n\
dest='disable_hddtemp', help='disable HD temperature module')
parser.add_argument('--disable-ip', action='store_true', default=False,
dest='disable_ip', help='disable IP module')
parser.add_argument('--disable-irq', action='store_true', default=False,
dest='disable_irq', help='disable IRQ module'),
parser.add_argument('--disable-load', action='store_true', default=False,
dest='disable_load', help='disable load module')
parser.add_argument('--disable-mem', action='store_true', default=False,
@ -157,6 +155,8 @@ Start the client browser (browser mode):\n\
dest='disable_bold', help='disable bold mode in the terminal')
parser.add_argument('--disable-bg', action='store_true', default=False,
dest='disable_bg', help='disable background colors in the terminal')
parser.add_argument('--enable-irq', action='store_true', default=False,
dest='enable_irq', help='enable IRQ module'),
parser.add_argument('--enable-process-extended', action='store_true', default=False,
dest='enable_process_extended', help='enable extended stats on top process')
# Export modules feature

View File

@ -73,7 +73,7 @@ class _GlancesCurses(object):
'M': {'switch': 'reset_minmax_tag'},
'n': {'switch': 'disable_network'},
'P': {'switch': 'disable_ports'},
'Q': {'switch': 'disable_irq'},
'Q': {'switch': 'enable_irq'},
'r': {'switch': 'reset_history_tag'},
'R': {'switch': 'disable_raid'},
's': {'switch': 'disable_sensors'},
@ -673,7 +673,7 @@ class _GlancesCurses(object):
self.args.disable_ports and
self.args.disable_diskio and
self.args.disable_fs and
self.args.disable_irq and
self.args.enable_irq and
self.args.disable_folders and
self.args.disable_raid and
self.args.disable_sensors) and not self.args.disable_left_sidebar:

View File

@ -90,11 +90,9 @@ class Plugin(GlancesPlugin):
# Init the return message
ret = []
if not LINUX: # only available on GNU/Linux
return ret
# Only available on GNU/Linux
# Only process if stats exist and display plugin enable...
if not self.stats or self.is_disable():
if not LINUX or not self.stats or not self.args.enable_irq:
return ret
if max_width is not None and max_width >= 23: