1#!/bin/bash 2# 3# config: 2 50 4# @brief: Get the internal D-bus information. 5# 6 7# shellcheck source=/dev/null 8. "$DREPORT_INCLUDE"/functions 9 10desc="D-bus internal stats" 11 12command="busctl call org.freedesktop.DBus /org/freedesktop/DBus \ 13 org.freedesktop.DBus.Debug.Stats GetStats \"\" a{sv} --verbose" 14 15file_name="dbusstats.log" 16 17add_cmd_output "$command" "$file_name" "$desc" 18