diff --git a/source/tools/monitor/ioMonitor/ioMon/ioMonCfgClass.py b/source/tools/monitor/ioMonitor/ioMon/ioMonCfgClass.py index ffc13f293073751d9e0f185c42cd01939275a995..abbcd675eafd9804cb7d376891d1f26392de7e1e 100755 --- a/source/tools/monitor/ioMonitor/ioMon/ioMonCfgClass.py +++ b/source/tools/monitor/ioMonitor/ioMon/ioMonCfgClass.py @@ -36,9 +36,9 @@ class ioMonCfgClass(object): cfg['iops'] = int(cfg['iops']) if cfg['iops'] else 150 cfg['bps'] = int(cfg['bps']) if cfg['bps'] else 31457280 cfg['cycle'] = int(cfg['cycle']) if cfg['cycle'] else 1000 - cfg['diagIowait'] = cfg['diagIowait'] if cfg['diagIowait'] else 'on' - cfg['diagIoburst'] = cfg['diagIoburst'] if cfg['diagIoburst'] else 'on' - cfg['diagIolat'] = cfg['diagIolat'] if cfg['diagIolat'] else 'on' + cfg['diagIowait'] = cfg['diagIowait'] if cfg['diagIowait'] else 'off' + cfg['diagIoburst'] = cfg['diagIoburst'] if cfg['diagIoburst'] else 'off' + cfg['diagIolat'] = cfg['diagIolat'] if cfg['diagIolat'] else 'off' cfg['diagIohang'] = cfg['diagIohang'] if cfg['diagIohang'] else 'off' self._updateCfg(cfg) return