commit | a3e6a48cdf4a5dad5422fa2611f24fc0f8da9e20 | [log] [tgz] |
---|---|---|
author | Deepak Kamat <dkamat@nvidia.com> | Wed Mar 19 11:04:09 2025 +0530 |
committer | Deepak Kamat <dkamat@nvidia.com> | Wed Mar 26 09:09:08 2025 +0530 |
tree | b1f0e4b2b89e26e5221f435c5e0148bd278801e5 | |
parent | fa6a47bf0a4d44b6730e4a50984bd555bdb6b3f8 [diff] |
Dreport: Add Mount Information File Collection Add functionality to collect system mount information as part of the debug data collection process. The mount info file contains details about all mounted filesystems including mount points, filesystem types, and mount options. Including mount information in debug reports will help with troubleshooting filesystem and storage related issues in OpenBMC based systems by providing a snapshot of the system's mount configuration at the time of report generation. Tested on the qemuarm platform. ''' busctl call xyz.openbmc_project.Dump.Manager /xyz/openbmc_project/dump/bmc xyz.openbmc_project.Dump.Create CreateDump a{sv} 1 "i" i 1234 root@qemuarm:~# journalctl -f -u xyz.openbmc_project.Dump.Manager.service ... Mar 20 07:22:10 qemuarm phosphor-dump-manager[367]: Thu Mar 20 07:22:10 UTC 2025 Report is available in /var/lib/phosphor-debug-collector/dumps/1 Mar 20 07:22:10 qemuarm phosphor-dump-manager[367]: Thu Mar 20 07:22:10 UTC 2025 Successfully completed Mar 20 07:22:10 qemuarm phosphor-dump-manager[223]: User initiated dump completed, resetting flag root@qemuarm:~# ls /var/lib/phosphor-debug-collector/dumps/1/obmcdump_1_1742479997.tar.xz /var/lib/phosphor-debug-collector/dumps/1/obmcdump_1_1742479997.tar.xz tar -xvf obmcdump_1_1742479997.tar.xz obmcdump_1_1742479997/ obmcdump_1_1742479997/summary.log ... obmcdump_1_1742479997/mountinfo.log ... cat obmcdump_1_1742479997/mountinfo.log /dev/vda on / type ext4 (rw,relatime) devtmpfs on /dev type devtmpfs (rw,relatime,size=118004k,nr_inodes=29501,mode=755) proc on /proc type proc (rw,relatime) sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev) devpts on /dev/pts type devpts (rw,relatime,gid=5,mode=620,ptmxmode=666) tmpfs on /run type tmpfs (rw,nosuid,nodev,size=47612k,nr_inodes=819200,mode=755) cgroup2 on /sys/fs/cgroup type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot) bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700) mqueue on /dev/mqueue type mqueue (rw,nosuid,nodev,noexec,relatime) debugfs on /sys/kernel/debug type debugfs (rw,nosuid,nodev,noexec,relatime) tracefs on /sys/kernel/tracing type tracefs (rw,nosuid,nodev,noexec,relatime) tmpfs on /tmp type tmpfs (rw,nosuid,nodev,size=119032k,nr_inodes=1048576) tmpfs on /run/credentials/systemd-journald.service type tmpfs (ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,noswap) tmpfs on /run/credentials/systemd-resolved.service type tmpfs (ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,noswap) tmpfs on /var/volatile type tmpfs (rw,relatime) tmpfs on /run/credentials/systemd-networkd.service type tmpfs (ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,noswap) tracefs on /sys/kernel/debug/tracing type tracefs (rw,nosuid,nodev,noexec,relatime) tmpfs on /run/credentials/getty@tty1.service type tmpfs (ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,noswap) ''' Change-Id: I4e8fc3c8ba5a8ec40ec91256e0a2e7390e915be9 Signed-off-by: Deepak Kamat <dkamat@nvidia.com>
Phosphor Debug Collector provides mechanisms to collect various log files and system parameters. Used to troubleshoot problems in OpenBMC based systems.
One such mechanism is dreport, a script that collects debug data and packages it into an archive file.
To build this package with meson, do the following steps:
1. meson builddir 2. ninja -C builddir
To clean the built files run ninja -C builddir clean
.
Tests can be run in the CI docker container, refer local-ci-build
or with an OpenBMC x86 sdk(see below for x86 steps).
meson -Dtests=enabled build ninja -C build test