提交 2c9e80b4 编写于 作者: N nicolargo

[diskio] Aliases Display Incorrectly/Not at All, and Glances Throws Error on Exit #1618

上级 62dbeb36
......@@ -170,7 +170,7 @@ disable=False
#hide=sda2,sda5,loop.*
hide=loop.*,/dev/loop*
# Alias for sda1
#sda1_alias=IntDisk
#sda1_alias=InternalDisk
[fs]
disable=False
......
......@@ -162,7 +162,7 @@ class Plugin(GlancesPlugin):
return ret
# Max size for the interface name
name_max_width = max_width - 12
name_max_width = max_width - 13
# Header
msg = '{:{width}}'.format('DISK I/O', width=name_max_width)
......@@ -188,9 +188,9 @@ class Plugin(GlancesPlugin):
ret.append(self.curse_new_line())
if len(disk_name) > name_max_width:
# Cut disk name if it is too long
disk_name = '_' + disk_name[-name_max_width:]
disk_name = '_' + disk_name[-name_max_width+1:]
msg = '{:{width}}'.format(nativestr(disk_name),
width=name_max_width)
width=name_max_width+1)
ret.append(self.curse_add_line(msg))
if args.diskio_iops:
# count
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册