/openbmc/telemetry/src/ |
H A D | report_manager.cpp | 50 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 D | report_manager.hpp | 49 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 D | report.cpp | 36 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 D | report_factory.cpp | 22 uint64_t appendLimit, const ReportUpdates reportUpdates, in make() argument 44 reportActions, period, appendLimit, reportUpdates, reportManager, in make()
|
H A D | report.hpp | 122 uint64_t appendLimit; member in Report
|
/openbmc/telemetry/tests/src/ |
H A D | test_report.cpp | 140 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 D | test_report_manager.cpp | 81 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 D | report_params.hpp | 79 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 D | metric_report_definition.hpp | 283 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 D | report_factory.hpp | 42 uint64_t appendLimit, const ReportUpdates reportUpdates,
|
/openbmc/telemetry/tests/src/mocks/ |
H A D | report_factory_mock.hpp | 82 params.interval(), params.appendLimit(), in expectMake()
|