commit | 76b7643f89e6152288e8229591f6f18006efe89a | [log] [tgz] |
---|---|---|
author | Shawn McCarney <shawnmm@us.ibm.com> | Thu Oct 15 18:46:50 2020 -0500 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Mon Oct 19 14:50:03 2020 +0000 |
tree | 77c6ad142a1c979912ebd252799371b2822e823c | |
parent | c9efe415a85cf19702f22224f7f47dd1f7670e01 [diff] |
regulators: Store journal messages in error logs The Journal::getMessages() method was recently implemented and merged. This method can be used to obtain the N most recent journal messages from a specified application. Modify the error logging code to use this new method. A method call was already in the code, but it was commented out until the new method became available. The journal messages are stored in FFDC files that are eventually stored in the error log as additional debug data. Tested: * Test where works * Verify returned messages are correct * Verify returned messages are stored in error log * Journal contains 0 messages for the specified application * Journal contains < 30 messages for the specified application * Journal contains > 30 messages for the specified application * Test where fails * Verify exception is written to journal * Verify keeps looping to obtain journal messages from other applications Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: I2cc07e19daa61a614611305d60fd318c48826d96
This repository contains applications for configuring and monitoring devices that deliver power to the system.
To build all applications in this repository:
meson build ninja -C build
To clean the repository and remove all build output:
rm -rf build
You can specify meson options to customize the build process. For example, you can specify:
Several applications in this repository require a PSU JSON config to run. The JSON config file provides information for:
There is an example psu.json to describe the necessary configurations.
inventoryPMBusAccessType
defines the pmbus access type, which tells the service which sysfs type to use to read the attributes. The possible values are:/sys/bus/i2c/devices/3-0069/
/sys/bus/i2c/devices/3-0069/hwmon/hwmonX/
/sys/kernel/debug/pmbus/hwmonX/
/sys/kernel/debug/pmbus/hwmonX/cffps1/
fruConfigs
defines the mapping between the attribute file and the FRU inventory interface and property. The configuration example below indicates that the service will read part_number
attribute file from a directory specified by the above pmbus access type, and assign to PartNumber
property in xyz.openbmc_project.Inventory.Decorator.Asset
interface."fruConfigs": [ { "propertyName": "PartNumber", "fileName": "part_number", "interface": "xyz.openbmc_project.Inventory.Decorator.Asset" } ]
psuDevices
defines the kernel device dir for each PSU in inventory. The configuration example below indicates that powersupply0
's device is located in /sys/bus/i2c/devices/3-0069
."psuDevices": { "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0" : "/sys/bus/i2c/devices/3-0069", }