Home
last modified time | relevance | path

Searched refs:Readings (Results 1 – 21 of 21) sorted by relevance

/openbmc/telemetry/src/types/
H A Dreadings.cpp10 LabeledReadings toLabeledReadings(const Readings& readings) in toLabeledReadings()
19 Readings toReadings(const LabeledReadings& labeledReadings) in toReadings()
21 return Readings{labeledReadings.at_label<ts::Timestamp>(), in toReadings()
22 utils::transform(labeledReadings.at_label<ts::Readings>(), in toReadings()
H A Dreadings.hpp7 using Readings = std::tuple<uint64_t, std::vector<ReadingData>>; typedef
15 utils::tstring::Timestamp, utils::tstring::Readings>;
20 LabeledReadings toLabeledReadings(const Readings&);
21 Readings toReadings(const LabeledReadings&);
/openbmc/bmcweb/redfish-core/include/
H A Dtelemetry_readings.hpp21 using Readings = std::vector<std::tuple<std::string, double, uint64_t>>; typedef
22 using TimestampReadings = std::tuple<uint64_t, Readings>;
24 inline nlohmann::json toMetricValues(const Readings& readings) in toMetricValues()
/openbmc/telemetry/tests/src/params/
H A Dreport_params.hpp112 ReportParams& readings(Readings val) in readings()
118 Readings readings() const in readings()
167 Readings readingsProperty = {};
/openbmc/telemetry/tests/src/
H A Dtest_report.cpp286 EXPECT_THAT(getProperty<Readings>( in TEST_F()
288 Eq(Readings{})); in TEST_F()
838 const auto [timestamp, readings] = getProperty<Readings>( in TEST_P()
851 const auto [timestamp, readings] = getProperty<Readings>( in TEST_P()
862 const auto [timestamp, readings] = getProperty<Readings>( in TEST_P()
883 const auto [timestamp, readings] = getProperty<Readings>( in TEST_F()
893 const auto [timestamp, readings] = getProperty<Readings>( in TEST_F()
922 EXPECT_THAT(getProperty<Readings>( in TEST_P()
924 Eq(Readings{})); in TEST_P()
947 EXPECT_THAT(getProperty<Readings>( in TEST_P()
[all …]
H A Dtest_report_manager.cpp164 std::vector<LabeledMetricParameters>{}, true, Readings{})) in TEST_F()
/openbmc/telemetry/tests/src/helpers/
H A Dreport_params_helpers.hpp20 inline void PrintTo(const Readings& readings, std::ostream* os) in PrintTo()
/openbmc/telemetry/src/
H A Dreport.hpp70 std::unique_ptr<interfaces::Clock> clock, Readings);
128 Readings readings = {};
H A Dreport_manager.cpp161 std::move(labeledMetricParams), enabled, Readings{}); in addReport()
170 const bool enabled, Readings readings) in addReport()
228 Readings readings = {}; in loadFromPersistent()
H A Dreport_factory.hpp40 Readings) const override;
H A Dreport_manager.hpp63 Readings);
H A Dreport_factory.cpp26 Readings readings) const in make()
H A Dreport.cpp39 std::unique_ptr<interfaces::Clock> clock, Readings readingsIn) : in Report()
/openbmc/telemetry/src/interfaces/
H A Dreport_factory.hpp45 Readings) const = 0;
/openbmc/telemetry/src/utils/
H A Dtstring.hpp179 struct Readings struct
/openbmc/telemetry/tests/src/mocks/
H A Dreport_factory_mock.hpp66 bool, Readings),
/openbmc/phosphor-host-ipmid/
H A Dhost-ipmid-whitelist.conf51 0x2C:0x10 //<Group Extension>:<Get Temperature Readings>
/openbmc/bmcweb/test/redfish-core/include/utils/
H A Dsensor_utils_test.cpp131 Readings metrics = {reading}; in TEST()
148 Readings metrics; in TEST()
167 Readings metrics = {reading}; in TEST()
/openbmc/openbmc/meta-quanta/meta-gbs/recipes-phosphor/ipmi/phosphor-ipmi-host/
H A Dgbs-ipmid-whitelist.conf71 0x2C:0x10 //<Group Extension>:<Get Temperature Readings>
/openbmc/openbmc-test-automation/ipmi/
H A Dtest_ipmi_sensor.robot23 Verify IPMI Temperature Readings using Redfish
33 Verify DCMI Temperature Readings using Redfish
48 # Entity ID Entity Instance Temp. Readings
111 # Entity ID Entity Instance Temp. Readings
/openbmc/bmcweb/redfish-core/include/utils/
H A Dsensor_utils.hpp309 using Readings = std::vector<Reading>; typedef
311 using Statistics = std::tuple<uint64_t, Readings>;
325 Readings metrics = std::get<1>(*statistics); in updateSensorStatistics()