blob: 58f5609fa0393ef805d281ea14147d64931634c0 [file] [log] [blame]
Matt Spinlerbb449c12021-06-14 11:45:28 -06001#pragma once
2#include <nlohmann/json.hpp>
3
4namespace phosphor::fan::monitor
5{
6
7/**
8 * @brief Collects hwmon data for event log FFDC
9 *
10 * Makes a list of the loaded hwmon driver names, and
11 * pulls interesting lines from dmesg.
12 *
13 * @return json - The FFDC data
14 */
15nlohmann::json collectHwmonFFDC();
16
17} // namespace phosphor::fan::monitor