diff options
| author | Jason M. Bills <jason.m.bills@linux.intel.com> | 2019-08-01 16:49:41 -0700 |
|---|---|---|
| committer | Jason Bills <jason.m.bills@linux.intel.com> | 2019-08-28 18:57:44 +0000 |
| commit | bc48a175d5cf0b0426a72730e9542042532959cc (patch) | |
| tree | f924493a30c35823b6e178e97e0dd737ceec1bec | |
| parent | fb7579e9cc9eec2fac4743ff00ed2a3735a59e0c (diff) | |
| download | bmcweb-bc48a175d5cf0b0426a72730e9542042532959cc.tar.gz bmcweb-bc48a175d5cf0b0426a72730e9542042532959cc.zip | |
Add messages for power supply and system power good failures
Tested:
Confirmed that the messages appear correctly in the registry
under "/redfish/v1/Registries/OpenBMC/OpenBMC".
Change-Id: Id730e6a1c14cbcbd74fc3310a1a41b557f93cb35
Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
| -rw-r--r-- | redfish-core/include/registries/openbmc_message_registry.hpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/redfish-core/include/registries/openbmc_message_registry.hpp b/redfish-core/include/registries/openbmc_message_registry.hpp index 51e2b97..f73adf7 100644 --- a/redfish-core/include/registries/openbmc_message_registry.hpp +++ b/redfish-core/include/registries/openbmc_message_registry.hpp @@ -1083,6 +1083,18 @@ const std::array registry = { .resolution = "None.", }}, MessageEntry{ + "PowerSupplyPowerGoodFailed", + { + .description = "Indicates that the power supply power good signal " + "failed to assert within the specified time.", + .message = "Power supply power good failed to assert within %1 " + "milliseconds.", + .severity = "Critical", + .numberOfArgs = 1, + .paramTypes = {"number"}, + .resolution = "None.", + }}, + MessageEntry{ "PowerSupplyRemoved", { .description = "Indicates that a power supply has been removed.", @@ -1269,6 +1281,18 @@ const std::array registry = { .paramTypes = {}, .resolution = "None.", }}, + MessageEntry{"SystemPowerGoodFailed", + { + .description = + "Indicates that the system power good signal failed " + "to assert within the specified time (VR failure).", + .message = "System power good failed to assert within %1 " + "milliseconds (VR failure).", + .severity = "Critical", + .numberOfArgs = 1, + .paramTypes = {"number"}, + .resolution = "None.", + }}, MessageEntry{"SystemPowerLost", { .description = "Indicates that power was lost while the " |

