Deepak Kamat | 73cec52 | 2025-03-26 18:04:37 +0530 | [diff] [blame^] | 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 | |||||
10 | desc="dbus internal stats" | ||||
11 | |||||
12 | command="dbus-send --system --dest=org.freedesktop.DBus \ | ||||
13 | --type=method_call --print-reply \ | ||||
14 | /org/freedesktop/DBus org.freedesktop.DBus.Debug.Stats.GetStats" | ||||
15 | |||||
16 | file_name="dbusstats.log" | ||||
17 | |||||
18 | add_cmd_output "$command" "$file_name" "$desc" |