# phosphor-debug-collector **Repository Path**: mirrors_openbmc/phosphor-debug-collector ## Basic Information - **Project Name**: phosphor-debug-collector - **Description**: Collects debug data from the BMC for extraction. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-02-13 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # phosphor-debug-collector 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](tools/dreport.d/README.md), a script that collects debug data and packages it into an archive file. ## To Build To build this package with meson, do the following steps: ```bash 1. meson builddir 2. ninja -C builddir ``` To clean the built files run `ninja -C builddir clean`. ## To run unit tests Tests can be run in the CI docker container, refer [local-ci-build](https://github.com/openbmc/docs/blob/master/testing/local-ci-build.md) or with an OpenBMC x86 sdk(see below for x86 steps). ```bash meson -Dtests=enabled build ninja -C build test ```