xref: /openbmc/phosphor-debug-collector/tools/dreport.d/plugins.d/dbusstats (revision 73cec52d519c4697df8495244da39279a7c7ed8e)
1#!/bin/bash
2#
3# config: 2 50
4# @brief: Get the internal dbus information.
5#
6
7# shellcheck source=/dev/null
8. "$DREPORT_INCLUDE"/functions
9
10desc="dbus internal stats"
11
12command="dbus-send --system --dest=org.freedesktop.DBus \
13            --type=method_call --print-reply \
14            /org/freedesktop/DBus org.freedesktop.DBus.Debug.Stats.GetStats"
15
16file_name="dbusstats.log"
17
18add_cmd_output "$command" "$file_name" "$desc"
19