xref: /openbmc/phosphor-debug-collector/tools/dreport.d/plugins.d/top (revision 8bcf49c22c69e10b11960fb31ecef417a54a864c)
1*8bcf49c2SJayanth Othayoth#!/bin/bash
2*8bcf49c2SJayanth Othayoth#
3*8bcf49c2SJayanth Othayoth# config: 123 10
4*8bcf49c2SJayanth Othayoth# @brief: Collect top command output.
5*8bcf49c2SJayanth Othayoth#
6*8bcf49c2SJayanth Othayoth
7*8bcf49c2SJayanth Othayoth. $DREPORT_INCLUDE/functions
8*8bcf49c2SJayanth Othayoth
9*8bcf49c2SJayanth Othayothdesc="top"
10*8bcf49c2SJayanth Othayothfile_name="top.log"
11*8bcf49c2SJayanth Othayothcommand="top -n 1 -b"
12*8bcf49c2SJayanth Othayoth
13*8bcf49c2SJayanth Othayothadd_cmd_output "$command" "$file_name" "$desc"
14