Home
last modified time | relevance | path

Searched refs:hbIntervalMinutes (Results 1 – 4 of 4) sorted by relevance

/openbmc/bmcweb/redfish-core/lib/
H A Devent_service.hpp336 std::optional<uint64_t> hbIntervalMinutes; in requestRoutesEventDestinationCollection() local
350 "HeartbeatIntervalMinutes", hbIntervalMinutes, // in requestRoutesEventDestinationCollection()
449 if (hbIntervalMinutes) in requestRoutesEventDestinationCollection()
702 if (hbIntervalMinutes) in requestRoutesEventDestinationCollection()
704 if (*hbIntervalMinutes < 1 || *hbIntervalMinutes > 65535) in requestRoutesEventDestinationCollection()
707 asyncResp->res, *hbIntervalMinutes, in requestRoutesEventDestinationCollection()
711 subValue->userSub->hbIntervalMinutes = *hbIntervalMinutes; in requestRoutesEventDestinationCollection()
804 jVal["HeartbeatIntervalMinutes"] = userSub.hbIntervalMinutes; in requestRoutesEventDestination()
842 std::optional<uint64_t> hbIntervalMinutes; in requestRoutesEventDestination() local
850 "HeartbeatIntervalMinutes", hbIntervalMinutes, // in requestRoutesEventDestination()
[all …]
/openbmc/bmcweb/include/
H A Devent_service_store.hpp35 uint64_t hbIntervalMinutes = 10; member
124 subvalue.hbIntervalMinutes = *value; in fromJson()
H A Dpersistent_data.hpp340 subValue.hbIntervalMinutes; in writeData()
/openbmc/bmcweb/redfish-core/src/
H A Dsubscription.cpp134 hbTimer.expires_after(std::chrono::minutes(userSub->hbIntervalMinutes)); in scheduleNextHeartbeatEvent()