Home
last modified time | relevance | path

Searched refs:bmcLogEntry (Results 1 – 3 of 3) sorted by relevance

/openbmc/bmcweb/redfish-core/lib/
H A Dsystems_logservices_postcodes.hpp289 nlohmann::json::object_t bmcLogEntry; in fillPostCodeEntry() local
290 bmcLogEntry["@odata.type"] = "#LogEntry.v1_9_0.LogEntry"; in fillPostCodeEntry()
291 bmcLogEntry["@odata.id"] = boost::urls::format( in fillPostCodeEntry()
294 bmcLogEntry["Name"] = "POST Code Log Entry"; in fillPostCodeEntry()
295 bmcLogEntry["Id"] = postcodeEntryID; in fillPostCodeEntry()
296 bmcLogEntry["Message"] = std::move(msg); in fillPostCodeEntry()
297 bmcLogEntry["MessageId"] = "OpenBMC.0.2.BIOSPOSTCode"; in fillPostCodeEntry()
298 bmcLogEntry["MessageArgs"] = messageArgs; in fillPostCodeEntry()
299 bmcLogEntry["EntryType"] = "Event"; in fillPostCodeEntry()
300 bmcLogEntry["Severity"] = std::move(severity); in fillPostCodeEntry()
[all …]
/openbmc/bmcweb/redfish-core/src/
H A Dsubscription.cpp210 nlohmann::json::object_t bmcLogEntry; in filterAndSendEventLogs() local
213 logEntry.timestamp, userSub->customText, bmcLogEntry) != 0) in filterAndSendEventLogs()
219 if (!eventMatchesFilter(*userSub, bmcLogEntry, "")) in filterAndSendEventLogs()
222 nlohmann::json(bmcLogEntry).dump()); in filterAndSendEventLogs()
228 if (!memberMatches(bmcLogEntry, *filter)) in filterAndSendEventLogs()
235 logEntryArray.emplace_back(std::move(bmcLogEntry)); in filterAndSendEventLogs()
/openbmc/bmcweb/redfish-core/include/utils/
H A Deventlog_utils.hpp388 nlohmann::json::object_t bmcLogEntry; in handleSystemsAndManagersLogServiceEventLogLogEntryCollection() local
390 fillEventLogEntryJson(idStr, logEntry, bmcLogEntry, parentStr, in handleSystemsAndManagersLogServiceEventLogLogEntryCollection()
410 logEntryArray.emplace_back(std::move(bmcLogEntry)); in handleSystemsAndManagersLogServiceEventLogLogEntryCollection()
468 nlohmann::json::object_t bmcLogEntry; in handleSystemsAndManagersLogServiceEventLogEntriesGet() local
470 idStr, logEntry, bmcLogEntry, parentStr, childId, in handleSystemsAndManagersLogServiceEventLogEntriesGet()
477 asyncResp->res.jsonValue.update(bmcLogEntry); in handleSystemsAndManagersLogServiceEventLogEntriesGet()