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