summaryrefslogtreecommitdiffstats
path: root/redfish-core/include
diff options
context:
space:
mode:
authorJason M. Bills <jason.m.bills@linux.intel.com>2019-08-28 15:46:55 -0700
committerEd Tanous <ed.tanous@intel.com>2019-09-18 01:11:29 +0000
commit73de092f524d28f1002fe76577603007331896a3 (patch)
tree719d0633a5de8f1ceeb1d9b8502c6ec58205b3fa /redfish-core/include
parent6295becabb9edba2edb53a3c0dddc13d2ffac8dd (diff)
downloadbmcweb-73de092f524d28f1002fe76577603007331896a3.tar.gz
bmcweb-73de092f524d28f1002fe76577603007331896a3.zip
Add CPU and voltage regulator thermal messages
Tested: Used a heat gun to heat the CPU and voltage regulator and checked that the message is logged correctly. Change-Id: I4d73a9ad12691b364a33faf036a60f36bab0ac93 Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
Diffstat (limited to 'redfish-core/include')
-rw-r--r--redfish-core/include/registries/openbmc_message_registry.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/redfish-core/include/registries/openbmc_message_registry.hpp b/redfish-core/include/registries/openbmc_message_registry.hpp
index 5f8fef2..0e923f0 100644
--- a/redfish-core/include/registries/openbmc_message_registry.hpp
+++ b/redfish-core/include/registries/openbmc_message_registry.hpp
@@ -96,6 +96,16 @@ const std::array registry = {
.paramTypes = {"string"},
.resolution = "None.",
}},
+ MessageEntry{"CPUThermalTrip",
+ {
+ .description = "Indicates that the specified CPU thermal "
+ "trip has been asserted.",
+ .message = "CPU %1 Thermal Trip.",
+ .severity = "Critical",
+ .numberOfArgs = 1,
+ .paramTypes = {"number"},
+ .resolution = "None.",
+ }},
MessageEntry{
"DCPowerOff",
{
@@ -1366,5 +1376,16 @@ const std::array registry = {
.paramTypes = {},
.resolution = "None.",
}},
+ MessageEntry{
+ "VoltageRegulatorOverheated",
+ {
+ .description =
+ "Indicates that the specified voltage regulator overheated.",
+ .message = "%1 Voltage Regulator Overheated.",
+ .severity = "Critical",
+ .numberOfArgs = 1,
+ .paramTypes = {"string"},
+ .resolution = "None.",
+ }},
};
} // namespace redfish::message_registries::openbmc
OpenPOWER on IntegriCloud