commit | fbeb5bf41438f84a1336e018d3cc44251a84aa9f | [log] [tgz] |
---|---|---|
author | Krzysztof Grobelny <krzysztof.grobelny@intel.com> | Mon Jan 03 09:41:29 2022 +0100 |
committer | Krzysztof Grobelny <krzysztof.grobelny@intel.com> | Thu Jan 13 11:18:53 2022 +0000 |
tree | e5f87882649ac4abeb73c039072c1abd32080afe | |
parent | 51f0fd501f4b772533271d15cb27d396186a7192 [diff] |
fixed clang-tidy errors fixed clang compilation error and few clang-tidy issues Tested: - Code compiles, all unit tests are passing - Number of reported clang-tidy issues decreased Change-Id: Ie3f88db6e2dffb26ec6c56dbdc1ce5bad288dccd Signed-off-by: Krzysztof Grobelny <krzysztof.grobelny@intel.com>
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]
.