Home
last modified time | relevance | path

Searched refs:appendLimit (Results 1 – 11 of 11) sorted by relevance

/openbmc/telemetry/src/
H A Dreport_manager.cpp50 std::string reportUpdates, uint64_t appendLimit, in ReportManager()
66 if (appendLimit == std::numeric_limits<uint64_t>::max()) in ReportManager()
68 appendLimit = maxAppendLimit; in ReportManager()
84 Milliseconds(interval), appendLimit, in ReportManager()
103 const ReportUpdates reportUpdates, const uint64_t appendLimit, in verifyAddReport() argument
115 if (appendLimit > maxAppendLimit && in verifyAddReport()
116 appendLimit != std::numeric_limits<uint64_t>::max()) in verifyAddReport()
141 const uint64_t appendLimit, const ReportUpdates reportUpdates, in addReport() argument
148 interval, appendLimit, reportUpdates, in addReport()
156 const uint64_t appendLimit, const ReportUpdates reportUpdates, in addReport() argument
[all …]
H A Dreport_manager.hpp49 const ReportUpdates reportUpdates, const uint64_t appendLimit,
55 const uint64_t appendLimit, const ReportUpdates reportUpdates,
61 const uint64_t appendLimit, const ReportUpdates reportUpdates,
H A Dreport.cpp36 metricCount(getMetricCount(metricsIn)), appendLimit(appendLimitIn), in Report()
166 return appendLimit; in deduceBufferSize()
346 [this](const auto&) { return appendLimit; }); in makeReportInterface()
504 data["AppendLimit"] = appendLimit; in storeConfiguration()
H A Dreport_factory.cpp22 uint64_t appendLimit, const ReportUpdates reportUpdates, in make() argument
44 reportActions, period, appendLimit, reportUpdates, reportManager, in make()
H A Dreport.hpp122 uint64_t appendLimit; member in Report
/openbmc/telemetry/tests/src/
H A Dtest_report.cpp140 params.reportActions(), params.interval(), params.appendLimit(), in makeReport()
243 Eq(defaultParams().appendLimit())); in TEST_F()
647 nlohmann::json(ReportParams().appendLimit())),
890 .appendLimit(2u) in SetUp()
970 .appendLimit(5),
980 .appendLimit(4),
989 .appendLimit(0),
994 .appendLimit(10),
1007 .appendLimit(5),
1017 .appendLimit(4),
[all …]
H A Dtest_report_manager.cpp81 utils::enumToString(params.reportUpdates()), params.appendLimit(), in addReport()
413 reportParams.appendLimit(ReportManager::maxAppendLimit + 1); in TEST_F()
425 .expectMake(reportParams.appendLimit(ReportManager::maxAppendLimit), in TEST_F()
430 reportParams.appendLimit(std::numeric_limits<uint64_t>::max())); in TEST_F()
566 {"AppendLimit", reportParams.appendLimit()},
/openbmc/telemetry/tests/src/params/
H A Dreport_params.hpp79 ReportParams& appendLimit(uint64_t val) in appendLimit() function in ReportParams
85 uint64_t appendLimit() const in appendLimit() function in ReportParams
/openbmc/bmcweb/redfish-core/lib/
H A Dmetric_report_definition.hpp283 uint64_t appendLimit = 0; in fillReportDefinition() local
291 "ReportUpdates", reportUpdates, "AppendLimit", appendLimit, in fillReportDefinition()
402 asyncResp->res.jsonValue["AppendLimit"] = appendLimit; in fillReportDefinition()
429 uint64_t appendLimit = std::numeric_limits<uint64_t>::max(); member
554 std::optional<uint64_t> appendLimit; in getUserParameters() local
562 "AppendLimit", appendLimit, // in getUserParameters()
618 if (appendLimit) in getUserParameters()
620 args.appendLimit = *appendLimit; in getUserParameters()
852 args.reportUpdates, args.appendLimit, args.reportActions, in performAddReport()
/openbmc/telemetry/src/interfaces/
H A Dreport_factory.hpp42 uint64_t appendLimit, const ReportUpdates reportUpdates,
/openbmc/telemetry/tests/src/mocks/
H A Dreport_factory_mock.hpp82 params.interval(), params.appendLimit(), in expectMake()