| /openbmc/phosphor-power/phosphor-regulators/src/ |
| H A D | error_logging.hpp | 66 virtual void logConfigFileError(Entry::Level severity, 77 virtual void logDBusError(Entry::Level severity, Journal& journal) = 0; 89 virtual void logI2CError(Entry::Level severity, Journal& journal, 99 virtual void logInternalError(Entry::Level severity, Journal& journal) = 0; 114 Entry::Level severity, Journal& journal, PhaseFaultType type, 129 virtual void logPMBusError(Entry::Level severity, Journal& journal, 144 Entry::Level severity, Journal& journal, 172 virtual void logConfigFileError(Entry::Level severity, 176 virtual void logDBusError(Entry::Level severity, Journal& journal) override; 179 virtual void logI2CError(Entry::Level severity, Journal& journal, [all …]
|
| H A D | error_logging.cpp | 36 void DBusErrorLogging::logConfigFileError(Entry::Level severity, in logConfigFileError() argument 41 if (severity == Entry::Level::Critical) in logConfigFileError() 52 logError(message, severity, additionalData, journal); in logConfigFileError() 55 void DBusErrorLogging::logDBusError(Entry::Level severity, Journal& journal) in logDBusError() argument 58 logError("xyz.openbmc_project.Power.Error.DBus", severity, additionalData, in logDBusError() 62 void DBusErrorLogging::logI2CError(Entry::Level severity, Journal& journal, in logI2CError() argument 78 logError("xyz.openbmc_project.Power.Error.I2C", severity, additionalData, in logI2CError() 82 void DBusErrorLogging::logInternalError(Entry::Level severity, Journal& journal) in logInternalError() argument 85 logError("xyz.openbmc_project.Power.Error.Internal", severity, in logInternalError() 90 Entry::Level severity, Journal& journal, PhaseFaultType type, in logPhaseFault() argument [all …]
|
| H A D | error_logging_utils.cpp | 35 void logError(std::exception_ptr eptr, Entry::Level severity, in logError() argument 40 logError(eptr, severity, services, history); in logError() 43 void logError(std::exception_ptr eptr, Entry::Level severity, in logError() argument 69 errorLogging.logConfigFileError(severity, journal); in logError() 78 errorLogging.logPMBusError(severity, journal, e.getInventoryPath()); in logError() 87 errorLogging.logWriteVerificationError(severity, journal, in logError() 97 errorLogging.logI2CError(severity, journal, e.bus, e.addr, in logError() 107 errorLogging.logDBusError(severity, journal); in logError() 116 errorLogging.logInternalError(severity, journal); in logError() 125 errorLogging.logInternalError(severity, journal); in logError()
|
| H A D | error_logging_utils.hpp | 40 void logError(std::exception_ptr eptr, Entry::Level severity, 63 void logError(std::exception_ptr eptr, Entry::Level severity,
|
| /openbmc/phosphor-power/phosphor-regulators/test/ |
| H A D | mock_error_logging.hpp | 43 (Entry::Level severity, Journal& journal), (override)); 45 MOCK_METHOD(void, logDBusError, (Entry::Level severity, Journal& journal), 49 (Entry::Level severity, Journal& journal, 54 (Entry::Level severity, Journal& journal), (override)); 57 (Entry::Level severity, Journal& journal, PhaseFaultType type, 63 (Entry::Level severity, Journal& journal, 68 (Entry::Level severity, Journal& journal,
|
| /openbmc/phosphor-logging/ |
| H A D | elog_serialize.cpp | 36 a(e.id(), e.severity(), e.timestamp(), e.message(), in save() 55 Entry::Level severity{}; in load() local 69 a(id, severity, timestamp, message, additionalData_old, associations, in load() 77 a(id, severity, timestamp, message, additionalData_old, associations, in load() 85 a(id, severity, timestamp, message, additionalData_old, associations, in load() 92 a(id, severity, timestamp, message, additionalData_old, associations, in load() 100 a(id, severity, timestamp, message, additionalData_old, associations, in load() 107 a(id, severity, timestamp, message, additionalData, associations, in load() 114 a(id, severity, timestamp, message, additionalData_old, associations, in load() 120 e.severity(severity, true); in load()
|
| H A D | log_manager.hpp | 184 auto create(const std::string& message, Severity severity, 371 auto create(std::string message, Severity severity, in create() argument 375 return manager.create(message, severity, additionalData); in create() 389 std::string message, Severity severity, in createWithFFDCFiles() argument 395 manager.create(message, severity, additionalData, ffdc); in createWithFFDCFiles()
|
| /openbmc/phosphor-webui/app/common/directives/ |
| H A D | log-filter.js | 26 $scope.toggleSeverity = function(severity) { 27 $scope.selectedSeverity[severity] = 28 !$scope.selectedSeverity[severity]; 30 if (['high', 'medium', 'low'].indexOf(severity) > -1) { 31 if ($scope.selectedSeverity[severity] == false &&
|
| H A D | syslog-filter.js | 19 $scope.toggleSeverity = function(severity) { 20 if (severity == 'All') { 25 var index = $scope.selectedSeverityList.indexOf(severity); 29 $scope.selectedSeverityList.push(severity);
|
| /openbmc/phosphor-logging/test/openpower-pels/ |
| H A D | user_header_test.cpp | 37 EXPECT_EQ(uh.severity(), 0x20); in TEST() 97 regEntry.severity = {{"", 0x40}}; in TEST() 117 EXPECT_EQ(uh.severity(), 0x40); in TEST() 142 regEntry.severity = {{"", 0x20}, {"systemB", 0x10}, {"systemA", 0x00}}; in TEST() 160 EXPECT_EQ(uh.severity(), 0x00); in TEST() 167 EXPECT_EQ(uh.severity(), 0x10); in TEST() 174 EXPECT_EQ(uh.severity(), 0x20); in TEST() 198 ASSERT_EQ(uh.severity(), 0x40); in TEST() 220 ASSERT_EQ(uh.severity(), 0x50); in TEST() 244 ASSERT_EQ(uh.severity(), 0x51); in TEST() [all …]
|
| /openbmc/phosphor-logging/extensions/openpower-pels/ |
| H A D | user_header.cpp | 35 phosphor::logging::Entry::Level severity, in UserHeader() argument 131 if (!entry.severity) in UserHeader() 133 _eventSeverity = convertOBMCSeverityToPEL(severity); in UserHeader() 138 auto sev = getSeverity(entry.severity.value(), dataIface); in UserHeader() 239 std::string severity; in getJSON() local 244 severity = pv::getValue(_eventSeverity, pel_values::severityValues); in getJSON() 273 jsonInsert(uh, "Event Severity", severity, 1); in getJSON() 314 s = &sev.severity; in getSeverity() 319 s = &sev.severity; in getSeverity()
|
| /openbmc/ibm-logging/ |
| H A D | policy_find.cpp | 119 std::string severity = "Critical"; in getESELSeverity() local 142 severity = sev->second; in getESELSeverity() 145 return severity; in getESELSeverity() 197 auto severity = getESELSeverity(*selData); in getSearchModifierFirstTry() local 198 if (severity) in getSearchModifierFirstTry() 200 return *callout + "||" + *severity; in getSearchModifierFirstTry()
|
| /openbmc/phosphor-fan-presence/monitor/ |
| H A D | fan_error.hpp | 99 severity) : in FanError() 103 severity)) in FanError() 117 severity) : in FanError() 121 severity)) in FanError()
|
| /openbmc/phosphor-webui/app/server-health/controllers/ |
| H A D | sensors-overview-controller.js | 73 $scope.toggleSeverity = function(severity) { argument 74 $scope.selectedSeverity[severity] = !$scope.selectedSeverity[severity]; 76 if (['normal', 'warning', 'critical'].indexOf(severity) > -1) { 77 if ($scope.selectedSeverity[severity] == false &&
|
| /openbmc/qemu/include/hw/pci/ |
| H A D | pcie_aer.h | 75 uint32_t severity; member 83 return msg->severity == PCI_ERR_ROOT_CMD_NONFATAL_EN || in pcie_aer_msg_is_uncor() 84 msg->severity == PCI_ERR_ROOT_CMD_FATAL_EN; in pcie_aer_msg_is_uncor()
|
| /openbmc/openpower-proc-control/extensions/phal/ |
| H A D | create_pel.hpp | 36 const Severity severity = Severity::Informational); 51 const Severity severity = Severity::Error); 61 const Severity severity = Severity::Error);
|
| H A D | create_pel.cpp | 82 const FFDCData& ffdcData, const Severity severity) in createErrorPEL() argument 114 severity); in createErrorPEL() 137 const Severity severity) in createSbeErrorPEL() argument 184 (severity == Severity::Error)) in createSbeErrorPEL() 214 severity); in createSbeErrorPEL() 243 const Severity severity) in createPEL() argument 262 severity); in createPEL()
|
| /openbmc/sdbusplus/tools/sdbusplus/ |
| H A D | event.py | 48 self.severity = kwargs.pop("severity", "informational") 49 self.syslog_sev = EventElement.syslog_severity(self.severity) 50 self.registry_sev = EventElement.registry_severity(self.severity) 131 def syslog_severity(severity: str) -> str: 141 }[severity] 144 def registry_severity(severity: str) -> str: 154 }[severity]
|
| /openbmc/openpower-debug-collector/dump/ |
| H A D | create_pel.cpp | 38 const FFDCData& ffdcData, const Severity severity, in createSbeErrorPEL() argument 82 severity); in createSbeErrorPEL() 111 openpower::dump::pel::Severity convertSeverityToEnum(uint8_t severity) in convertSeverityToEnum() argument 113 switch (severity) in convertSeverityToEnum() 134 uint8_t severity; in processFFDCPackets() local 137 std::tie(severity, fd, path) = ffdcTuple; in processFFDCPackets() 139 Severity logSeverity = convertSeverityToEnum(severity); in processFFDCPackets()
|
| /openbmc/bmcweb/test/redfish-core/include/ |
| H A D | submit_test_event_test.cpp | 27 testEvent.severity = "whatever"; in createTestEvent() 50 testEvent.severity = "Informational"; in TEST() 67 EXPECT_THAT(testEvent.severity, Optional(StrEq("whatever"))); in TEST()
|
| /openbmc/bmcweb/redfish-core/include/utils/ |
| H A D | journal_utils.hpp | 116 long int severity = 8; // Default to an invalid priority in fillBMCJournalLogEntryJson() local 117 ret = getJournalMetadataInt(journal, "PRIORITY", severity); in fillBMCJournalLogEntryJson() 144 if (severity <= 2) in fillBMCJournalLogEntryJson() 148 else if (severity <= 4) in fillBMCJournalLogEntryJson()
|
| /openbmc/libcper/sections/ |
| H A D | cper-section-nvidia.c | 134 json_object *severity = json_object_new_object(); in cper_section_nvidia_to_ir() local 135 json_object_object_add(severity, "code", in cper_section_nvidia_to_ir() 138 json_object_object_add(severity, "name", in cper_section_nvidia_to_ir() 151 json_object_object_add(section_ir, "severity", severity); in cper_section_nvidia_to_ir() 224 json_object *severity = json_object_object_get(section, "severity"); in ir_section_nvidia_to_cper() local 226 json_object_object_get(severity, "code")); in ir_section_nvidia_to_cper()
|
| /openbmc/webui-vue/src/store/modules/Logs/ |
| H A D | EventLogStore.js | 8 if (event.severity === 'Warning') { 11 if (event.severity === 'Critical') { 23 events.filter(({ severity }) => severity === 'Critical'); field in AnonymousClass724e31d50101 63 severity: Severity,
|
| /openbmc/sdbusplus/tools/sdbusplus/templates/ |
| H A D | event.md.mako | 12 - severity: `${event.severity}`
|
| /openbmc/openpower-hw-diags/attn/pel/ |
| H A D | user_header.cpp | 32 void UserHeader::setSeverity(uint8_t severity) in setSeverity() argument 34 _eventSeverity = severity; in setSeverity()
|