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.hpp286 nlohmann::json::object_t bmcLogEntry; in fillPostCodeEntry() local
287 bmcLogEntry["@odata.type"] = "#LogEntry.v1_9_0.LogEntry"; in fillPostCodeEntry()
288 bmcLogEntry["@odata.id"] = boost::urls::format( in fillPostCodeEntry()
291 bmcLogEntry["Name"] = "POST Code Log Entry"; in fillPostCodeEntry()
292 bmcLogEntry["Id"] = postcodeEntryID; in fillPostCodeEntry()
293 bmcLogEntry["Message"] = std::move(msg); in fillPostCodeEntry()
294 bmcLogEntry["MessageId"] = "OpenBMC.0.2.BIOSPOSTCode"; in fillPostCodeEntry()
295 bmcLogEntry["MessageArgs"] = messageArgs; in fillPostCodeEntry()
296 bmcLogEntry["EntryType"] = "Event"; in fillPostCodeEntry()
297 bmcLogEntry["Severity"] = std::move(severity); in fillPostCodeEntry()
[all …]
H A Dlog_services.hpp1595 nlohmann::json::object_t bmcLogEntry; in handleSystemsLogServiceEventLogLogEntryCollection() local
1597 fillEventLogEntryJson(idStr, logEntry, bmcLogEntry); in handleSystemsLogServiceEventLogLogEntryCollection()
1616 logEntryArray.emplace_back(std::move(bmcLogEntry)); in handleSystemsLogServiceEventLogLogEntryCollection()
1692 nlohmann::json::object_t bmcLogEntry; in handleSystemsLogServiceEventLogEntriesGet() local
1694 fillEventLogEntryJson(idStr, logEntry, bmcLogEntry); in handleSystemsLogServiceEventLogEntriesGet()
1700 asyncResp->res.jsonValue.update(bmcLogEntry); in handleSystemsLogServiceEventLogEntriesGet()
/openbmc/bmcweb/redfish-core/src/
H A Dsubscription.cpp224 nlohmann::json::object_t bmcLogEntry; in filterAndSendEventLogs() local
227 logEntry.timestamp, userSub->customText, bmcLogEntry) != 0) in filterAndSendEventLogs()
233 if (!eventMatchesFilter(*userSub, bmcLogEntry, "")) in filterAndSendEventLogs()
236 nlohmann::json(bmcLogEntry).dump()); in filterAndSendEventLogs()
242 if (!memberMatches(bmcLogEntry, *filter)) in filterAndSendEventLogs()
249 logEntryArray.emplace_back(std::move(bmcLogEntry)); in filterAndSendEventLogs()