blob: 7cdc497a6522b382081830b94047f7f4c4721a58 [file] [log] [blame]
Wludzik, Jozef081ebf02020-04-27 17:24:15 +02001#pragma once
2
Wludzik, Jozef081ebf02020-04-27 17:24:15 +02003#include "utils/telemetry_utils.hpp"
4
John Edward Broadbent7e860f12021-04-08 15:57:16 -07005#include <app.hpp>
Ed Tanous168e20c2021-12-13 14:39:53 -08006#include <dbus_utility.hpp>
Ed Tanous45ca1b82022-03-25 13:07:27 -07007#include <query.hpp>
Ed Tanoused398212021-06-09 17:05:54 -07008#include <registries/privilege_registry.hpp>
John Edward Broadbent7e860f12021-04-08 15:57:16 -07009
Wludzik, Jozef081ebf02020-04-27 17:24:15 +020010namespace redfish
11{
12
John Edward Broadbent26bd9b52021-07-12 14:06:30 -070013inline void handleTelemetryServiceGet(
Ed Tanous45ca1b82022-03-25 13:07:27 -070014 crow::App& app, const crow::Request& req,
Ed Tanous104f09c2022-01-25 09:56:04 -080015 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
John Edward Broadbent26bd9b52021-07-12 14:06:30 -070016{
Ed Tanous45ca1b82022-03-25 13:07:27 -070017 if (!redfish::setUpRedfishRoute(app, req, asyncResp->res))
18 {
19 return;
20 }
John Edward Broadbent26bd9b52021-07-12 14:06:30 -070021 asyncResp->res.jsonValue["@odata.type"] =
22 "#TelemetryService.v1_2_1.TelemetryService";
23 asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/TelemetryService";
24 asyncResp->res.jsonValue["Id"] = "TelemetryService";
25 asyncResp->res.jsonValue["Name"] = "Telemetry Service";
26
27 asyncResp->res.jsonValue["MetricReportDefinitions"]["@odata.id"] =
28 "/redfish/v1/TelemetryService/MetricReportDefinitions";
29 asyncResp->res.jsonValue["MetricReports"]["@odata.id"] =
30 "/redfish/v1/TelemetryService/MetricReports";
Lukasz Kazmierczak07148cf2021-08-02 11:08:53 +020031 asyncResp->res.jsonValue["Triggers"]["@odata.id"] =
32 "/redfish/v1/TelemetryService/Triggers";
John Edward Broadbent26bd9b52021-07-12 14:06:30 -070033
34 crow::connections::systemBus->async_method_call(
Ed Tanousb9d36b42022-02-26 21:42:46 -080035 [asyncResp](const boost::system::error_code ec,
36 const dbus::utility::DBusPropertiesMap& ret) {
John Edward Broadbent26bd9b52021-07-12 14:06:30 -070037 if (ec == boost::system::errc::host_unreachable)
38 {
39 asyncResp->res.jsonValue["Status"]["State"] = "Absent";
40 return;
41 }
42 if (ec)
43 {
44 BMCWEB_LOG_ERROR << "respHandler DBus error " << ec;
45 messages::internalError(asyncResp->res);
46 return;
47 }
48
49 asyncResp->res.jsonValue["Status"]["State"] = "Enabled";
50
51 const size_t* maxReports = nullptr;
52 const uint64_t* minInterval = nullptr;
53 for (const auto& [key, var] : ret)
54 {
55 if (key == "MaxReports")
56 {
57 maxReports = std::get_if<size_t>(&var);
58 }
59 else if (key == "MinInterval")
60 {
61 minInterval = std::get_if<uint64_t>(&var);
62 }
63 }
Ed Tanouse662eae2022-01-25 10:39:19 -080064 if (maxReports == nullptr || minInterval == nullptr)
John Edward Broadbent26bd9b52021-07-12 14:06:30 -070065 {
66 BMCWEB_LOG_ERROR
67 << "Property type mismatch or property is missing";
68 messages::internalError(asyncResp->res);
69 return;
70 }
71
72 asyncResp->res.jsonValue["MaxReports"] = *maxReports;
73 asyncResp->res.jsonValue["MinCollectionInterval"] =
74 time_utils::toDurationString(std::chrono::milliseconds(
75 static_cast<time_t>(*minInterval)));
76 },
77 telemetry::service, "/xyz/openbmc_project/Telemetry/Reports",
78 "org.freedesktop.DBus.Properties", "GetAll",
79 "xyz.openbmc_project.Telemetry.ReportManager");
80}
81
John Edward Broadbent7e860f12021-04-08 15:57:16 -070082inline void requestRoutesTelemetryService(App& app)
Wludzik, Jozef081ebf02020-04-27 17:24:15 +020083{
John Edward Broadbent7e860f12021-04-08 15:57:16 -070084 BMCWEB_ROUTE(app, "/redfish/v1/TelemetryService/")
Ed Tanoused398212021-06-09 17:05:54 -070085 .privileges(redfish::privileges::getTelemetryService)
Ed Tanous45ca1b82022-03-25 13:07:27 -070086 .methods(boost::beast::http::verb::get)(
87 std::bind_front(handleTelemetryServiceGet, std::ref(app)));
John Edward Broadbent7e860f12021-04-08 15:57:16 -070088}
John Edward Broadbent26bd9b52021-07-12 14:06:30 -070089
Wludzik, Jozef081ebf02020-04-27 17:24:15 +020090} // namespace redfish