xref: /openbmc/phosphor-debug-collector/tools/dreport.d/plugins.d/softIRQs (revision 9a5fac9a36341542bf6b658a41a0a1319c360ce4)
1#!/bin/bash
2#
3# config: 2 75
4# @brief: Collect software interrupt request information.
5#
6
7# shellcheck source=/dev/null
8. "$DREPORT_INCLUDE"/functions
9
10desc="SoftIRQs"
11file_name="softIRQs.log"
12command="cat /proc/softirqs"
13
14add_cmd_output "$command" "$file_name" "$desc"
15