commit | 38c6409c16d6119df73c83832ce4c5450ad5fe35 | [log] [tgz] |
---|---|---|
author | Wojciech Tempczyk <wojciechx.tempczyk@intel.com> | Thu Oct 05 12:28:55 2023 +0200 |
committer | Wojciech Tempczyk <wojciechx.tempczyk@intel.com> | Thu Oct 05 12:43:58 2023 +0200 |
tree | 35d584c9051d7790cfcf926d5e61bde5a7f75ca3 | |
parent | 3995a361af50f6708090bf853494cf1659864cd4 [diff] |
Fix static code analysis tool failures Uncaught exception (boost::system::system_error) is now caught. Change-Id: I0aa88f173a982ecebfa999fd44ed864be709240c Signed-off-by: Wojciech Tempczyk <wojciechx.tempczyk@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]
.