commit | 89cf7d7dafe2c073d781a40d59fa9c46cb344be6 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Mon Dec 05 07:59:22 2022 -0600 |
committer | Patrick Williams <patrick@stwcx.xyz> | Mon Dec 05 07:59:22 2022 -0600 |
tree | f893d39cff3780a10c82c95882ad7ef05e4286b9 | |
parent | 18e7101cf3283c32fa52ed8b00697e1e1f59015a [diff] |
python: fix flake8 warnings and format with black Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I7bbfbc71139316873944ab1bbf010ce7f3db5511
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]
.