commit | 3995a361af50f6708090bf853494cf1659864cd4 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Fri Jun 23 10:30:23 2023 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Fri Jun 23 10:30:43 2023 -0500 |
tree | 540b8968fb64b12590f75350c69207cbdc40e46a | |
parent | cc8abc0be58c19acd088da455454fdf466a1745f [diff] |
Remove OWNERS which are unqualified Commit cc8abc0be58c19acd088da455454fdf466a1745f added owners which do not qualify based on the overall project requirements: https://github.com/openbmc/docs/blob/master/community-membership.md#subproject-owner There has been no response on Gerrit to an inquiry about this by anyone currently listed as an OWNER. Removing the "owner add" portion of cc8abc0be58c19acd088da455454fdf466a1745f until this can be resolved. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I3d0ed615056d33e29da100489fe14f454b473840
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]
.