commit | daeddc7c5587933729a7a1e981b054c4c8be8069 | [log] [tgz] |
---|---|---|
author | Szymon Dompke <szymon.dompke@intel.com> | Thu Oct 13 18:19:27 2022 +0200 |
committer | Szymon Dompke <szymon.dompke@intel.com> | Fri Oct 14 08:08:19 2022 +0000 |
tree | 2e771fc736c3a150c8eca0aa588e1bce7cab6445 | |
parent | 892f7c81da31149699c01a086f93f28bd3039df8 [diff] |
Add missing header Compilation was failing on g++-12, due to missing header in 1 file. Testing done: - Compilation works on g++-12 Signed-off-by: Szymon Dompke <szymon.dompke@intel.com> Change-Id: I658d9ff70dc02bcb541c6b42dff4e54b92a9e60f
This component implements middleware for sensors and metrics aggregation.
This application is implementation of Telemetry proposed in OpenBMC design docs [1]
.
It's responsible for:
[2]
,[3]
updates.[4]
There are two way to build telemetry service:
To build it using bitbake follow the guide from OpenBMC docs[5]
. To build it using meson follow the quick guide to install meson[6]
and then run below commands
meson build cd build ninja
After successful build you should be able to run telemetry binary or start unit tests
./tests/telemetry-ut ./telemetry
In case if system is missing boost dependency, it is possible to build it locally and set BOOST_ROOT environment variable to location of built files for meson. After this change meson should be able to detect boost dependency. See [7]
for more details.
More information can be found in OpenBMC docs repository [8]
.