Add 7 missed meters in Resource Usage Panel.

We have made the ipmi meters visible in "Resource Usage" panel.
Now a meter should be removed and other 7 meters missed need to
be added in. All these meters are under IPMI protocol.

Change-Id: I34ed7187347ff4a4cfac7c572f16e03f1fe15b39
Closes-Bug: #1436635
This commit is contained in:
XinXiaohui 2015-03-30 09:37:45 +08:00
parent c502d69290
commit f75a52d2b3
1 changed files with 28 additions and 4 deletions

View File

@ -1259,10 +1259,6 @@ class Meters(object):
'label': '',
'description': _("System Current Power"),
}),
('hardware.ipmi.node.temperature', {
'label': '',
'description': _("System Current Temperature"),
}),
('hardware.ipmi.fan', {
'label': '',
'description': _("Fan RPM"),
@ -1279,4 +1275,32 @@ class Meters(object):
'label': '',
'description': _("Sensor Voltage Reading"),
}),
('hardware.ipmi.node.inlet_temperature', {
'label': '',
'description': _("System Inlet Temperature Reading"),
}),
('hardware.ipmi.node.outlet_temperature', {
'label': '',
'description': _("System Outlet Temperature Reading"),
}),
('hardware.ipmi.node.airflow', {
'label': '',
'description': _("System Airflow Reading"),
}),
('hardware.ipmi.node.cups', {
'label': '',
'description': _("System CUPS Reading"),
}),
('hardware.ipmi.node.cpu_util', {
'label': '',
'description': _("System CPU Utility Reading"),
}),
('hardware.ipmi.node.mem_util', {
'label': '',
'description': _("System Memory Utility Reading"),
}),
('hardware.ipmi.node.io_util', {
'label': '',
'description': _("System IO Utility Reading"),
}),
])