Home
last modified time | relevance | path

Searched full:eventlog (Results 1 – 25 of 54) sorted by relevance

123

/openbmc/linux/drivers/char/tpm/
H A DMakefile15 tpm-y += eventlog/common.o
16 tpm-y += eventlog/tpm1.o
17 tpm-y += eventlog/tpm2.o
19 tpm-$(CONFIG_ACPI) += tpm_ppi.o eventlog/acpi.o
20 tpm-$(CONFIG_EFI) += eventlog/efi.o
21 tpm-$(CONFIG_OF) += eventlog/of.o
/openbmc/openbmc-test-automation/redfish/systems/eventlog/
H A Dtest_event_logging.robot69 Redfish.Delete /redfish/v1/Systems/${SYSTEM_ID}/LogServices/EventLog/Entries/${elog_entry[0]["Id"]}
97 # "@odata.id": "/redfish/v1/Systems/system/LogServices/EventLog/Entries",
103 # "@odata.id": "/redfish/v1/Systems/system/LogServices/EventLog/Entries/1",
158 # "@odata.id": "/redfish/v1/Systems/system/LogServices/EventLog/Entries",
164 # "@odata.id": "/redfish/v1/Systems/system/LogServices/EventLog/Entries/1",
212 # "@odata.id": "/redfish/v1/Systems/system/LogServices/EventLog/Entries/2045",
214 # "AdditionalDataURI": "/redfish/v1/Systems/system/LogServices/EventLog/attachment/2045",
291 Redfish.Delete /redfish/v1/Systems/${SYSTEM_ID}/LogServices/EventLog/Entries/${error_entries_before[0]}
315 Wait Until Keyword Succeeds 3 min 20 sec Verify Watchdog EventLog Content
430 ${error_uris}= redfish_utils.get_member_list /redfish/v1/Systems/${SYSTEM_ID}/LogServices/EventLog/Entrie
[all...]
/openbmc/webui-vue/src/views/Logs/EventLogs/
H A DEventLogs.vue425 return this.$store.getters['eventLog/allEvents'].map((event) => {
467 this.$store.dispatch('eventLog/getEventLogData').finally(() => {
477 .dispatch('eventLog/downloadEntry', uri)
489 .dispatch('eventLog/updateEventLogStatus', {
510 .dispatch('eventLog/deleteAllEventLogs', this.allLogs)
518 .dispatch('eventLog/deleteEventLogs', uris)
531 return this.$store.getters['eventLog/allEvents'].map((eventLogs) => {
583 'eventLog/deleteAllEventLogs',
626 .dispatch('eventLog/resolveEventLogs', this.selectedRows)
639 .dispatch('eventLog/unresolveEventLogs', this.selectedRows)
/openbmc/openbmc-test-automation/lib/
H A Dlogging_utils.robot250 [Documentation] Get all available EventLog entries.
254 # "@odata.id": "/redfish/v1/Systems/system/LogServices/EventLog/Entries",
260 # "@odata.id": "/redfish/v1/Systems/system/LogServices/EventLog/Entries/1",
279 [Documentation] Pack the list of all available EventLog entries in dictionary.
311 [Documentation] Return the number of EventLog members.
319 [Documentation] Do Redfish EventLog purge.
322 ... /redfish/v1/Systems/${SYSTEM_ID}/LogServices/EventLog/ LogService.ClearLog
H A Desel_utils.robot48 # "@odata.id": "/redfish/v1/Systems/system/LogServices/EventLog/Entries/2",
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcollector/
H A Dviews.py25 …uest("This API only accepts POST requests. Post a file with:\n\ncurl -F eventlog=@bitbake_eventlog…
30 for chunk in request.FILES['eventlog'].chunks():
/openbmc/bmcweb/redfish-core/src/
H A Devent_log.cpp82 BMCWEB_LOG_ERROR("EventLog Params: could not find first space: {}", in getEventLogParams()
91 BMCWEB_LOG_ERROR("EventLog Params: could not find log contents: {}", in getEventLogParams()
103 BMCWEB_LOG_ERROR("EventLog Params: could not find entry fields: {}", in getEventLogParams()
/openbmc/bmcweb/
H A DRedfish.md621 `LogService/EventLog/Entries` URI.
625 files in /var/log/ and returns the appropriate Redfish EventLog Entries for
628 The other implementation of EventLog Entries can be enabled by compiling bmcweb
631 then be translated to Redfish EventLog Entries.
861 ### /redfish/v1/Systems/system/LogServices/EventLog/
872 ### /redfish/v1/Systems/system/LogServices/EventLog/Entries/
880 ### /redfish/v1/Systems/system/LogServices/EventLog/Entries/{LogEntryId}/
/openbmc/webui-vue/tests/unit/
H A DAppHeader.spec.js8 'eventLog/getEventLogData': jest.fn(),
75 it('getEvents should dispatch eventLog/getEventLogData', () => {
/openbmc/webui-vue/src/views/Overview/
H A DOverviewEvents.vue50 return this.$store.getters['eventLog/allEvents'];
74 this.$store.dispatch('eventLog/getEventLogData').finally(() => {
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dcooker.py135 self.eventlog = None
285 eventlog = self.data.getVar("BB_DEFAULT_EVENTLOG")
286 if not self.configuration.writeeventlog and eventlog:
287 self.setupEventLog(eventlog)
400 def setupEventLog(self, eventlog): argument
401 if self.eventlog and self.eventlog[0] != eventlog:
402 bb.event.unregister_UIHhandler(self.eventlog[1])
403 self.eventlog = None
404 if not self.eventlog or self.eventlog[0] != eventlog:
407 if not os.path.exists(os.path.dirname(eventlog)):
[all …]
/openbmc/bmcweb/redfish-core/lib/
H A Dlog_services.hpp1171 nlohmann::json::object_t eventLog; in requestRoutesSystemLogServiceCollection() local
1172 eventLog["@odata.id"] = in requestRoutesSystemLogServiceCollection()
1173 std::format("/redfish/v1/Systems/{}/LogServices/EventLog", in requestRoutesSystemLogServiceCollection()
1175 logServiceArray.emplace_back(std::move(eventLog)); in requestRoutesSystemLogServiceCollection()
1243 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/LogServices/EventLog/") in requestRoutesEventLogService()
1261 std::format("/redfish/v1/Systems/{}/LogServices/EventLog", in requestRoutesEventLogService()
1268 asyncResp->res.jsonValue["Id"] = "EventLog"; in requestRoutesEventLogService()
1280 "/redfish/v1/Systems/{}/LogServices/EventLog/Entries", in requestRoutesEventLogService()
1286 "/redfish/v1/Systems/{}/LogServices/EventLog/Actions/LogService.ClearLog", in requestRoutesEventLogService()
1307 // Clear the EventLog by deleting the log files in handleSystemsLogServicesEventLogActionsClearPost()
[all …]
/openbmc/intel-ipmi-oem/docs/
H A DIntel_IPMI_Platform_Events.md296 - `EventLog` - lists all detected events in the system in processed,
326 ##### EventLog l4subsection
328 System-wide [EventLog](http://redfish.dmtf.org/schemas/v1/LogService.json) is
332 `/redfish/v1/Systems/system/LogServices/EventLog`. It contains JSON array of log
337 "@odata.id": "/redfish/v1/Systems/system/LogServices/EventLog/Entries/37331",
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/
H A Dcommand_line_builds.html41 <h4 style="margin-left: 15px;"><strong>Import eventlog file</strong></h4>
72 …<table class="table col-md-6 table-bordered table-hover" id="eventlog-table" style="border-collaps…
204 $('#eventlog-table').DataTable({order: [[0, 'desc']], "pageLength": 50});
/openbmc/openbmc-test-automation/data/
H A Dvariables.py74 + "/LogServices/EventLog/Entries/"
261 # EventLog variables.
263 EVENT_LOG_URI = SYSTEM_BASE_URI + "LogServices/EventLog/"
/openbmc/webui-vue/src/store/modules/Logs/
H A DEventLogStore.js46 `${await this.dispatch('global/getSystemPath')}/LogServices/EventLog/Entries`,
84 … `${await this.dispatch('global/getSystemPath')}/LogServices/EventLog/Actions/LogService.ClearLog`,
/openbmc/skeleton/libopenbmc_intf/
H A Dopenbmc_intf.h2788 /* Declarations for org.openbmc.EventLog */
2791 #define EVENT_LOG(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_EVENT_LOG, EventLog))
2796 typedef struct _EventLog EventLog; typedef
2805 EventLog *object,
2809 EventLog *object,
2824 EventLog *object,
2832 EventLog *object,
2841 EventLog *proxy,
2847 EventLog *proxy,
2853 EventLog *proxy,
[all …]
H A Dopenbmc_intf.xml140 <interface name="org.openbmc.EventLog">
144 <signal name="EventLog">
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-firmware-gsmi31 the system eventlog. The binary format is
/openbmc/openbmc/poky/bitbake/bin/
H A Dtoaster-eventreplay13 as a build eventlog, and the ToasterUI is used to process events in the file
/openbmc/docs/
H A DREDFISH-cheatsheet.md116 …"X-Auth-Token: $token" -X GET https://${bmc}/redfish/v1/Systems/system/LogServices/EventLog/Entries
122 …tion/json" -X POST https://${bmc}/redfish/v1/Systems/system/LogServices/EventLog/Actions/LogServic…
/openbmc/linux/Documentation/security/tpm/
H A Dtpm_event_log.rst55 - [2] The final concatenation is done in drivers/char/tpm/eventlog/efi.c
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/gammu/gammu/
H A Dgammu-smsdrc36 # File (or stderr, syslog, eventlog) where information will be logged
/openbmc/webui-vue/src/store/
H A Dindex.js57 eventLog: EventLogStore, property in AnonymousClassb4283c500101.modules
/openbmc/linux/drivers/char/tpm/eventlog/
H A Defi.c58 /* malloc EventLog space */ in tpm_read_log_efi()

123