mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-28 11:41:46 +03:00
show sensors alias in web interface
sensor aliases currently work in the curses interface, but not in the web one fixes #1456
This commit is contained in:
parent
f9ae1eb7dc
commit
fa5170d0e0
@ -122,6 +122,12 @@ class Plugin(GlancesPlugin):
|
|||||||
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
# Set the alias for each stat
|
||||||
|
for stat in stats:
|
||||||
|
alias = self.has_alias(stat["label"].lower())
|
||||||
|
if alias:
|
||||||
|
stat["label"] = alias
|
||||||
|
|
||||||
# Update the stats
|
# Update the stats
|
||||||
self.stats = stats
|
self.stats = stats
|
||||||
|
|
||||||
@ -182,11 +188,7 @@ class Plugin(GlancesPlugin):
|
|||||||
continue
|
continue
|
||||||
# New line
|
# New line
|
||||||
ret.append(self.curse_new_line())
|
ret.append(self.curse_new_line())
|
||||||
# Alias for the lable name ?
|
msg = '{:{width}}'.format(i["label"][:name_max_width],
|
||||||
label = self.has_alias(i['label'].lower())
|
|
||||||
if label is None:
|
|
||||||
label = i['label']
|
|
||||||
msg = '{:{width}}'.format(label[:name_max_width],
|
|
||||||
width=name_max_width)
|
width=name_max_width)
|
||||||
ret.append(self.curse_add_line(msg))
|
ret.append(self.curse_add_line(msg))
|
||||||
if i['value'] in (b'ERR', b'SLP', b'UNK', b'NOS'):
|
if i['value'] in (b'ERR', b'SLP', b'UNK', b'NOS'):
|
||||||
|
Loading…
Reference in New Issue
Block a user